CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
README.md26 linesDownload Raw Back to stream-shift
1# stream-shift2 3Returns the next buffer/object in a stream's readable queue4 5```6npm install stream-shift7```8 9[![build status](http://img.shields.io/travis/mafintosh/stream-shift.svg?style=flat)](http://travis-ci.org/mafintosh/stream-shift)10 11## Usage12 13``` js14var shift = require('stream-shift')15 16console.log(shift(someStream)) // first item in its buffer17```18 19## Credit20 21Thanks [@dignifiedquire](https://github.com/dignifiedquire) for making this work on node 622 23## License24 25MIT26