UNPKG

ut-tools

Version:

Build and Release management automation package.

12 lines (10 loc) 160 B
'use strict'; const {Readable} = require('stream'); module.exports = input => ( new Readable({ read() { this.push(input); this.push(null); } }) );