Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tarray.js « example « typedarray « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8423d7c9b1c327e5c76744eccf7ec469b3ffdd79 (plain)
1
2
3
4
var Uint8Array = require('../').Uint8Array;
var ua = new Uint8Array(5);
ua[1] = 256 + 55;
console.log(ua[1]);