summaryrefslogtreecommitdiffstats
path: root/node_modules/util/support
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/util/support')
-rw-r--r--node_modules/util/support/isBuffer.js3
-rw-r--r--node_modules/util/support/isBufferBrowser.js6
2 files changed, 0 insertions, 9 deletions
diff --git a/node_modules/util/support/isBuffer.js b/node_modules/util/support/isBuffer.js
deleted file mode 100644
index ace9ac0..0000000
--- a/node_modules/util/support/isBuffer.js
+++ /dev/null
@@ -1,3 +0,0 @@
-module.exports = function isBuffer(arg) {
- return arg instanceof Buffer;
-}
diff --git a/node_modules/util/support/isBufferBrowser.js b/node_modules/util/support/isBufferBrowser.js
deleted file mode 100644
index 0e1bee1..0000000
--- a/node_modules/util/support/isBufferBrowser.js
+++ /dev/null
@@ -1,6 +0,0 @@
-module.exports = function isBuffer(arg) {
- return arg && typeof arg === 'object'
- && typeof arg.copy === 'function'
- && typeof arg.fill === 'function'
- && typeof arg.readUInt8 === 'function';
-} \ No newline at end of file