> For the complete documentation index, see [llms.txt](https://bryan-guner.gitbook.io/my-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bryan-guner.gitbook.io/my-docs/redux/repos/examples/real-world/node_modules/destroy.md).

# Destroy

[![NPM version](https://img.shields.io/npm/v/destroy.svg?style=flat-square)](https://npmjs.org/package/destroy) [![Build status](https://img.shields.io/travis/stream-utils/destroy.svg?style=flat-square)](https://travis-ci.org/stream-utils/destroy) [![Test coverage](https://img.shields.io/coveralls/stream-utils/destroy.svg?style=flat-square)](https://coveralls.io/r/stream-utils/destroy?branch=master) [![License](http://img.shields.io/npm/l/destroy.svg?style=flat-square)](https://github.com/bgoonz/Learning-Redux/blob/master/repos/examples/real-world/node_modules/destroy/LICENSE.md) [![Downloads](http://img.shields.io/npm/dm/destroy.svg?style=flat-square)](https://npmjs.org/package/destroy) [![Gittip](https://img.shields.io/gittip/jonathanong.svg?style=flat-square)](https://www.gittip.com/jonathanong/)

Destroy a stream.

This module is meant to ensure a stream gets destroyed, handling different APIs and Node.js bugs.

## API

```js
var destroy = require('destroy')
```

### destroy(stream)

Destroy the given stream. In most cases, this is identical to a simple `stream.destroy()` call. The rules are as follows for a given stream:

1. If the `stream` is an instance of `ReadStream`, then call `stream.destroy()` and add a listener to the `open` event to call `stream.close()` if it is fired. This is for a Node.js bug that will leak a file descriptor if `.destroy()` is called before `open`.
2. If the `stream` is not an instance of `Stream`, then nothing happens.
3. If the `stream` has a `.destroy()` method, then call it.

The function returns the `stream` passed in as the argument.

## Example

```js
var destroy = require('destroy')

var fs = require('fs')
var stream = fs.createReadStream('package.json')

// ... and later
destroy(stream)
```
