您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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