CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
README.md44 linesDownload Raw Back to unpipe
1# unpipe2 3[![NPM Version][npm-image]][npm-url]4[![NPM Downloads][downloads-image]][downloads-url]5[![Node.js Version][node-image]][node-url]6[![Build Status][travis-image]][travis-url]7[![Test Coverage][coveralls-image]][coveralls-url]8 9Unpipe a stream from all destinations.10 11## Installation12 13```sh14$ npm install unpipe15```16 17## API18 19```js20var unpipe = require('unpipe')21```22 23### unpipe(stream)24 25Unpipes all destinations from a given stream. With stream 2+, this is26equivalent to `stream.unpipe()`. When used with streams 1 style streams27(typically Node.js 0.8 and below), this module attempts to undo the28actions done in `stream.pipe(dest)`.29 30## License31 32[MIT](LICENSE)33 34[npm-image]: https://img.shields.io/npm/v/unpipe.svg35[npm-url]: https://npmjs.org/package/unpipe36[node-image]: https://img.shields.io/node/v/unpipe.svg37[node-url]: http://nodejs.org/download/38[travis-image]: https://img.shields.io/travis/stream-utils/unpipe.svg39[travis-url]: https://travis-ci.org/stream-utils/unpipe40[coveralls-image]: https://img.shields.io/coveralls/stream-utils/unpipe.svg41[coveralls-url]: https://coveralls.io/r/stream-utils/unpipe?branch=master42[downloads-image]: https://img.shields.io/npm/dm/unpipe.svg43[downloads-url]: https://npmjs.org/package/unpipe44