Files
JiboSDK/node_modules/insert-module-globals/test/isbuffer/both.js

7 lines
145 B
JavaScript
Raw Normal View History

2026-03-22 03:21:45 +02:00
module.exports = function (buf) {
return Buffer.isBuffer(buf);
};
module.exports.a = function () {
return Buffer.from('abcd', 'hex');
};