How to use the isBuffer function from buffer

Find comprehensive JavaScript buffer.isBuffer code examples handpicked from public code repositorys.

73
74
75
76
77
78
79
80
81
82
83
84
function _uint8ArrayToBuffer(chunk) {
  return Buffer.from(chunk);
}


function _isUint8Array(obj) {
  return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;
}


var destroyImpl = require('./internal/streams/destroy');

fork icon0
star icon0
watch icon1

2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
    return Object.prototype.toString.call(subject) === '[object Array]'
  })(subject)
}


function isArrayish (subject) {
  return isArray(subject) || Buffer.isBuffer(subject) ||
      subject && typeof subject === 'object' &&
      typeof subject.length === 'number'
}

fork icon0
star icon0
watch icon1