(...args)
| 191 | } |
| 192 | |
| 193 | function format(...args) { |
| 194 | return util.format(...args) |
| 195 | } |
| 196 | |
| 197 | exports.logic = (check, inp, out) => { |
| 198 | if (inp.length !== out.length) throw new Error('Input and Output must have same length') |
nothing calls this directly
no outgoing calls
no test coverage detected