summaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/_typed.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/modules/_typed.js')
-rw-r--r--node_modules/core-js/modules/_typed.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/node_modules/core-js/modules/_typed.js b/node_modules/core-js/modules/_typed.js
deleted file mode 100644
index 6ed2ab56d..000000000
--- a/node_modules/core-js/modules/_typed.js
+++ /dev/null
@@ -1,26 +0,0 @@
-var global = require('./_global')
- , hide = require('./_hide')
- , uid = require('./_uid')
- , TYPED = uid('typed_array')
- , VIEW = uid('view')
- , ABV = !!(global.ArrayBuffer && global.DataView)
- , CONSTR = ABV
- , i = 0, l = 9, Typed;
-
-var TypedArrayConstructors = (
- 'Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array'
-).split(',');
-
-while(i < l){
- if(Typed = global[TypedArrayConstructors[i++]]){
- hide(Typed.prototype, TYPED, true);
- hide(Typed.prototype, VIEW, true);
- } else CONSTR = false;
-}
-
-module.exports = {
- ABV: ABV,
- CONSTR: CONSTR,
- TYPED: TYPED,
- VIEW: VIEW
-}; \ No newline at end of file