Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

readme.markdown 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # typedarray
  2. TypedArray polyfill ripped from [this
  3. module](https://raw.github.com/inexorabletash/polyfill).
  4. [![build status](https://secure.travis-ci.org/substack/typedarray.png)](http://travis-ci.org/substack/typedarray)
  5. [![testling badge](https://ci.testling.com/substack/typedarray.png)](https://ci.testling.com/substack/typedarray)
  6. # example
  7. ``` js
  8. var Uint8Array = require('typedarray').Uint8Array;
  9. var ua = new Uint8Array(5);
  10. ua[1] = 256 + 55;
  11. console.log(ua[1]);
  12. ```
  13. output:
  14. ```
  15. 55
  16. ```
  17. # methods
  18. ``` js
  19. var TA = require('typedarray')
  20. ```
  21. The `TA` object has the following constructors:
  22. * TA.ArrayBuffer
  23. * TA.DataView
  24. * TA.Float32Array
  25. * TA.Float64Array
  26. * TA.Int8Array
  27. * TA.Int16Array
  28. * TA.Int32Array
  29. * TA.Uint8Array
  30. * TA.Uint8ClampedArray
  31. * TA.Uint16Array
  32. * TA.Uint32Array
  33. # install
  34. With [npm](https://npmjs.org) do:
  35. ```
  36. npm install typedarray
  37. ```
  38. To use this module in the browser, compile with
  39. [browserify](http://browserify.org)
  40. or download a UMD build from browserify CDN:
  41. http://wzrd.in/standalone/typedarray@latest
  42. # license
  43. MIT