(...args)
| 3603 | } |
| 3604 | |
| 3605 | function AND(...args) { |
| 3606 | return args.reduce((a, b) => a.map((c, i) => b[i] && c)); |
| 3607 | } |
| 3608 | |
| 3609 | function OR(...args) { |
| 3610 | return args.reduce((a, b) => a.map((c, i) => b[i] || c)) |
nothing calls this directly
no outgoing calls
no test coverage detected