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.

index.js 758B

12345678910111213141516171819202122232425
  1. /**
  2. * Convert a typed array to a Buffer without a copy
  3. *
  4. * Author: Feross Aboukhadijeh <https://feross.org>
  5. * License: MIT
  6. *
  7. * `npm install typedarray-to-buffer`
  8. */
  9. var isTypedArray = require('is-typedarray').strict
  10. module.exports = function typedarrayToBuffer (arr) {
  11. if (isTypedArray(arr)) {
  12. // To avoid a copy, use the typed array's underlying ArrayBuffer to back new Buffer
  13. var buf = Buffer.from(arr.buffer)
  14. if (arr.byteLength !== arr.buffer.byteLength) {
  15. // Respect the "view", i.e. byteOffset and byteLength, without doing a copy
  16. buf = buf.slice(arr.byteOffset, arr.byteOffset + arr.byteLength)
  17. }
  18. return buf
  19. } else {
  20. // Pass through all other types to `Buffer.from`
  21. return Buffer.from(arr)
  22. }
  23. }