* Returns true if obj is a buffer or an arraybuffer. * * @api private
(obj)
| 6834 | */ |
| 6835 | |
| 6836 | function isBuf(obj) { |
| 6837 | return (global.Buffer && global.Buffer.isBuffer(obj)) || (global.ArrayBuffer && obj instanceof ArrayBuffer); |
| 6838 | } |
| 6839 | |
| 6840 | }).call(this, typeof self !== "undefined" |
| 6841 | ? self |
no outgoing calls
no test coverage detected