Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

12 lines
160B

  1. 'use strict';
  2. const {Readable} = require('stream');
  3. module.exports = input => (
  4. new Readable({
  5. read() {
  6. this.push(input);
  7. this.push(null);
  8. }
  9. })
  10. );