(s, o, i)
| 21524 | return (Object.setPrototypeOf(o, Buffer.prototype), o) |
| 21525 | } |
| 21526 | function Buffer(s, o, i) { |
| 21527 | if ('number' == typeof s) { |
| 21528 | if ('string' == typeof o) |
| 21529 | throw new TypeError( |
| 21530 | 'The "string" argument must be of type string. Received type number' |
| 21531 | ) |
| 21532 | return allocUnsafe(s) |
| 21533 | } |
| 21534 | return from(s, o, i) |
| 21535 | } |
| 21536 | function from(s, o, i) { |
| 21537 | if ('string' == typeof s) |
| 21538 | return (function fromString(s, o) { |
nothing calls this directly
no test coverage detected