* Returns true if obj is a buffer or an arraybuffer. * * @api private
(obj)
| 3212 | */ |
| 3213 | |
| 3214 | function isBuf(obj) { |
| 3215 | return (global.Buffer && global.Buffer.isBuffer(obj)) || |
| 3216 | (global.ArrayBuffer && obj instanceof ArrayBuffer); |
| 3217 | } |
| 3218 | |
| 3219 | /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()))) |
| 3220 |
no outgoing calls
no test coverage detected