10 lines
No EOL
167 B
JavaScript
10 lines
No EOL
167 B
JavaScript
function isBuffer(inst) {
|
|
if(typeof Buffer !== "undefined") {
|
|
return Buffer.isBuffer(inst);
|
|
}
|
|
return inst instanceof Uint8Array;
|
|
}
|
|
|
|
module.exports = {
|
|
isBuffer
|
|
} |