UNPKG
typedarray
Version:
latest (0.0.7)
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
TypedArray polyfill for old browsers
github.com/es-shims/typedarray
es-shims/typedarray
typedarray
/
example
/
tarray.js
5 lines
(4 loc)
•
110 B
JavaScript
View Raw
1
2
3
4
5
var
Uint8Array
=
require
(
'../'
).
Uint8Array
;
var
ua =
new
Uint8Array
(
5
); ua[
1
] =
256
+
55
;
console
.
log
(ua[
1
]);