UNPKG

@pubby/sdk

Version:
16 lines (13 loc) 329 B
import { Transform } from '../lib/transform.js'; function take(count) { var stream$ = new Transform(function (data, cb) { if (count-- > 0) { cb(null, data); if (count == 0) { stream$.add(null); } } }); return stream$; } export { take };