Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / 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]);