Files
2023-07-12 16:31:19 +01:00

8 lines
209 B
JavaScript
Executable File

var buf = require('buffer');
var Buffer = buf.Buffer;
// could use Buffer.isBuffer but this is the same exact thing...
module.exports = function(o) {
return typeof o === 'object' && o instanceof Buffer;
};