mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-14 16:46:42 +02:00
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
|
|
} |