aboutsummaryrefslogtreecommitdiff
path: root/node_modules/typedarray/example/tarray.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/typedarray/example/tarray.js')
-rw-r--r--node_modules/typedarray/example/tarray.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/node_modules/typedarray/example/tarray.js b/node_modules/typedarray/example/tarray.js
deleted file mode 100644
index 8423d7c9b..000000000
--- a/node_modules/typedarray/example/tarray.js
+++ /dev/null
@@ -1,4 +0,0 @@
-var Uint8Array = require('../').Uint8Array;
-var ua = new Uint8Array(5);
-ua[1] = 256 + 55;
-console.log(ua[1]);