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 885B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. 'use strict';
  2. const { PassThrough } = require('stream');
  3. module.exports = function (/*streams...*/) {
  4. var sources = []
  5. var output = new PassThrough({objectMode: true})
  6. output.setMaxListeners(0)
  7. output.add = add
  8. output.isEmpty = isEmpty
  9. output.on('unpipe', remove)
  10. Array.prototype.slice.call(arguments).forEach(add)
  11. return output
  12. function add (source) {
  13. if (Array.isArray(source)) {
  14. source.forEach(add)
  15. return this
  16. }
  17. sources.push(source);
  18. source.once('end', remove.bind(null, source))
  19. source.once('error', output.emit.bind(output, 'error'))
  20. source.pipe(output, {end: false})
  21. return this
  22. }
  23. function isEmpty () {
  24. return sources.length == 0;
  25. }
  26. function remove (source) {
  27. sources = sources.filter(function (it) { return it !== source })
  28. if (!sources.length && output.readable) { output.end() }
  29. }
  30. }