Added the Porter Stemmer module to improve searches. This doesn't deal with some...
[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]);