Initial commit
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
module.exports = function (buf) {
|
||||
return Buffer.isBuffer(buf);
|
||||
};
|
||||
module.exports.a = function () {
|
||||
return Buffer.from('abcd', 'hex');
|
||||
};
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
module.exports = function (buf) {
|
||||
return Buffer.isBuffer(buf);
|
||||
};
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
module.exports = function (buf) {
|
||||
return Buffer.isBuffer(buf);
|
||||
};
|
||||
module.exports.a = function () {
|
||||
return new Buffer('abcd');
|
||||
};
|
||||
Reference in New Issue
Block a user