UNPKG
brush_cli
Version:
latest (0.0.2)
0.0.2
0.0.1
A tool for creating and developing cmos PC Framework project.
brush_cli
/
node_modules
/
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
]);