Upgraded drupal core with security updates
[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]);