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