39 lines
1.5 KiB
Markdown
39 lines
1.5 KiB
Markdown
|
# Destroy
|
||
|
|
||
|
[![NPM version][npm-image]][npm-url]
|
||
|
[![Build status][travis-image]][travis-url]
|
||
|
[![Test coverage][coveralls-image]][coveralls-url]
|
||
|
[![Dependency Status][david-image]][david-url]
|
||
|
[![License][license-image]][license-url]
|
||
|
[![Downloads][downloads-image]][downloads-url]
|
||
|
[![Gittip][gittip-image]][gittip-url]
|
||
|
|
||
|
Destroy a stream.
|
||
|
|
||
|
## API
|
||
|
|
||
|
```js
|
||
|
var destroy = require('destroy')
|
||
|
|
||
|
var fs = require('fs')
|
||
|
var stream = fs.createReadStream('package.json')
|
||
|
destroy(stream)
|
||
|
```
|
||
|
|
||
|
[npm-image]: https://img.shields.io/npm/v/destroy.svg?style=flat-square
|
||
|
[npm-url]: https://npmjs.org/package/destroy
|
||
|
[github-tag]: http://img.shields.io/github/tag/stream-utils/destroy.svg?style=flat-square
|
||
|
[github-url]: https://github.com/stream-utils/destroy/tags
|
||
|
[travis-image]: https://img.shields.io/travis/stream-utils/destroy.svg?style=flat-square
|
||
|
[travis-url]: https://travis-ci.org/stream-utils/destroy
|
||
|
[coveralls-image]: https://img.shields.io/coveralls/stream-utils/destroy.svg?style=flat-square
|
||
|
[coveralls-url]: https://coveralls.io/r/stream-utils/destroy?branch=master
|
||
|
[david-image]: http://img.shields.io/david/stream-utils/destroy.svg?style=flat-square
|
||
|
[david-url]: https://david-dm.org/stream-utils/destroy
|
||
|
[license-image]: http://img.shields.io/npm/l/destroy.svg?style=flat-square
|
||
|
[license-url]: LICENSE.md
|
||
|
[downloads-image]: http://img.shields.io/npm/dm/destroy.svg?style=flat-square
|
||
|
[downloads-url]: https://npmjs.org/package/destroy
|
||
|
[gittip-image]: https://img.shields.io/gittip/jonathanong.svg?style=flat-square
|
||
|
[gittip-url]: https://www.gittip.com/jonathanong/
|