AK-21/Graphite-Industrial-Intelligence
0
1# typedarray2 3TypedArray polyfill ripped from [this4module](https://raw.github.com/inexorabletash/polyfill).5 6[](http://travis-ci.org/substack/typedarray)7 8[](https://ci.testling.com/substack/typedarray)9 10# example11 12``` js13var Uint8Array = require('typedarray').Uint8Array;14var ua = new Uint8Array(5);15ua[1] = 256 + 55;16console.log(ua[1]);17```18 19output:20 21```225523```24 25# methods26 27``` js28var TA = require('typedarray')29```30 31The `TA` object has the following constructors:32 33* TA.ArrayBuffer34* TA.DataView35* TA.Float32Array36* TA.Float64Array37* TA.Int8Array38* TA.Int16Array39* TA.Int32Array40* TA.Uint8Array41* TA.Uint8ClampedArray42* TA.Uint16Array43* TA.Uint32Array44 45# install46 47With [npm](https://npmjs.org) do:48 49```50npm install typedarray51```52 53To use this module in the browser, compile with54[browserify](http://browserify.org)55or download a UMD build from browserify CDN:56 57http://wzrd.in/standalone/typedarray@latest58 59# license60 61MIT62 