UNPKG

overwatch-api-server

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