aboutsummaryrefslogtreecommitdiff
path: root/node_modules/gulp-util/lib/isBuffer.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/gulp-util/lib/isBuffer.js')
-rw-r--r--node_modules/gulp-util/lib/isBuffer.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/node_modules/gulp-util/lib/isBuffer.js b/node_modules/gulp-util/lib/isBuffer.js
deleted file mode 100644
index 7c52f78c9..000000000
--- a/node_modules/gulp-util/lib/isBuffer.js
+++ /dev/null
@@ -1,7 +0,0 @@
-var buf = require('buffer');
-var Buffer = buf.Buffer;
-
-// could use Buffer.isBuffer but this is the same exact thing...
-module.exports = function(o) {
- return typeof o === 'object' && o instanceof Buffer;
-};