File: tarray.js

package info (click to toggle)
node-typedarray 0.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 156 kB
  • sloc: javascript: 500; makefile: 2
file content (4 lines) | stat: -rw-r--r-- 110 bytes parent folder | download | duplicates (5)
1
2
3
4
var Uint8Array = require('../').Uint8Array;
var ua = new Uint8Array(5);
ua[1] = 256 + 55;
console.log(ua[1]);