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.

writable.js 229B

12345678
  1. var Stream = require("stream")
  2. var Writable = require("./lib/_stream_writable.js")
  3. if (process.env.READABLE_STREAM === 'disable') {
  4. module.exports = Stream && Stream.Writable || Writable
  5. } else {
  6. module.exports = Writable
  7. }