(length)
| 113054 | return length | 0; |
| 113055 | } |
| 113056 | function SlowBuffer(length) { |
| 113057 | if (+length != length) length = 0; |
| 113058 | return Buffer.alloc(+length); |
| 113059 | } |
| 113060 | Buffer.isBuffer = function isBuffer(b) { |
| 113061 | return b != null && b._isBuffer === true && b !== Buffer.prototype // so Buffer.isBuffer(Buffer.prototype) will be false |
| 113062 | ; |
nothing calls this directly
no outgoing calls
no test coverage detected