(length)
| 10012 | } |
| 10013 | |
| 10014 | function SlowBuffer (length) { |
| 10015 | if (+length != length) { // eslint-disable-line eqeqeq |
| 10016 | length = 0 |
| 10017 | } |
| 10018 | return Buffer.alloc(+length) |
| 10019 | } |
| 10020 | |
| 10021 | Buffer.isBuffer = function isBuffer (b) { |
| 10022 | return !!(b != null && b._isBuffer) |
nothing calls this directly
no outgoing calls
no test coverage detected