You need to sign in before continuing.
isBuffer.js 76 Bytes
module.exports = function isBuffer(arg) {
  return arg instanceof Buffer;
}