(check, inp, out)
| 1730 | } |
| 1731 | |
| 1732 | export function logic(check, inp, out) { |
| 1733 | if (inp.length !== out.length) throw new Error('Input and Output must have same length') |
| 1734 | for (let i in inp) if (util.isDeepStrictEqual(check, inp[i])) return out[i] |
| 1735 | return null |
| 1736 | } |
| 1737 | |
| 1738 | export function protoType() { |
| 1739 | Buffer.prototype.toArrayBuffer = function toArrayBufferV2() { |
nothing calls this directly
no outgoing calls
no test coverage detected