Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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. );