mirror of
https://github.com/github/codeql-action.git
synced 2026-05-16 08:10:12 +00:00
Initial commit
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
module.exports = function isBuffer(arg) {
|
||||
return arg instanceof Buffer;
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
module.exports = function isBuffer(arg) {
|
||||
return arg && typeof arg === 'object'
|
||||
&& typeof arg.copy === 'function'
|
||||
&& typeof arg.fill === 'function'
|
||||
&& typeof arg.readUInt8 === 'function';
|
||||
}
|
||||
Reference in New Issue
Block a user