4 lines
76 B
JavaScript
Raw Normal View History

module.exports = function isBuffer(arg) {
return arg instanceof Buffer;
}