Files
ms/packages/nodejs/src/util/support/isBufferBrowser.ts
2020-03-31 14:51:44 +08:00

6 lines
217 B
TypeScript

module.exports = function isBuffer(arg) {
return arg && typeof arg === 'object'
&& typeof arg.copy === 'function'
&& typeof arg.fill === 'function'
&& typeof arg.readUInt8 === 'function';
}