summaryrefslogtreecommitdiff
path: root/node_modules/tar/lib/buffer.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/tar/lib/buffer.js')
-rw-r--r--node_modules/tar/lib/buffer.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/node_modules/tar/lib/buffer.js b/node_modules/tar/lib/buffer.js
deleted file mode 100644
index 7876d5b..0000000
--- a/node_modules/tar/lib/buffer.js
+++ /dev/null
@@ -1,11 +0,0 @@
-'use strict'
-
-// Buffer in node 4.x < 4.5.0 doesn't have working Buffer.from
-// or Buffer.alloc, and Buffer in node 10 deprecated the ctor.
-// .M, this is fine .\^/M..
-let B = Buffer
-/* istanbul ignore next */
-if (!B.alloc) {
- B = require('safe-buffer').Buffer
-}
-module.exports = B