8423d7c9b1c327e5c76744eccf7ec469b3ffdd79
[yaffs-website] / node_modules / typedarray / example / tarray.js
1 var Uint8Array = require('../').Uint8Array;
2 var ua = new Uint8Array(5);
3 ua[1] = 256 + 55;
4 console.log(ua[1]);