summaryrefslogtreecommitdiffstats
path: root/node_modules/buffer/test/static.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/buffer/test/static.js')
-rw-r--r--node_modules/buffer/test/static.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/node_modules/buffer/test/static.js b/node_modules/buffer/test/static.js
deleted file mode 100644
index 4de900b..0000000
--- a/node_modules/buffer/test/static.js
+++ /dev/null
@@ -1,17 +0,0 @@
-if (process.env.OBJECT_IMPL) global.TYPED_ARRAY_SUPPORT = false
-var B = require('../').Buffer
-var test = require('tape')
-
-test('Buffer.isEncoding', function (t) {
- t.equal(B.isEncoding('HEX'), true)
- t.equal(B.isEncoding('hex'), true)
- t.equal(B.isEncoding('bad'), false)
- t.end()
-})
-
-test('Buffer.isBuffer', function (t) {
- t.equal(B.isBuffer(new B('hey', 'utf8')), true)
- t.equal(B.isBuffer(new B([1, 2, 3], 'utf8')), true)
- t.equal(B.isBuffer('hey'), false)
- t.end()
-})