demo___customer_pitch-c4152739-a50b-4b5b-9d4d-0561461666d9.zip-extract/_dependencies/npm/destroy-1.2.0/README.md

Path
demo___customer_pitch-c4152739-a50b-4b5b-9d4d-0561461666d9.zip-extract/_dependencies/npm/destroy-1.2.0/README.md
Status
scanned
Type
file
Name
README.md
Extension
.md
Programming language

      
    
Mime type
text/plain
File type
ASCII text
Tag

      
    
Rootfs path

      
    
Size
2459 (2.4 KB)
MD5
5866f60785543ab8d86b79dec253db49
SHA1
31d6d0f4b8f17c2551540857056950c406618f51
SHA256
80f720db998d4728565126ea1d4b96c5248d35c2e53032d23692ce3930de69c8
SHA512

      
    
SHA1_git
e7701aee746cafca9d5d09056d0b91071b4b5dc3
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
README.md | 2.4 KB |

# destroy [![NPM version][npm-image]][npm-url] [![Build Status][github-actions-ci-image]][github-actions-ci-url] [![Test coverage][coveralls-image]][coveralls-url] [![License][license-image]][license-url] [![Downloads][downloads-image]][downloads-url] 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 [, suppress]) Destroy the given stream, and optionally suppress any future `error` events. 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 an instance of a zlib stream, then call `stream.destroy()` and close the underlying zlib handle if open, otherwise call `stream.close()`. This is for consistency across Node.js versions and a Node.js bug that will leak a native zlib handle. 3. If the `stream` is not an instance of `Stream`, then nothing happens. 4. 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) ``` [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 [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 [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 [github-actions-ci-image]: https://img.shields.io/github/workflow/status/stream-utils/destroy/ci/master?label=ci&style=flat-square [github-actions-ci-url]: https://github.com/stream-utils/destroy/actions/workflows/ci.yml
URL Start line End line
https://img.shields.io/npm/v/destroy.svg?style=flat-square 52 52
https://npmjs.org/package/destroy 53 53
http://img.shields.io/github/tag/stream-utils/destroy.svg?style=flat-square 54 54
https://github.com/stream-utils/destroy/tags 55 55
https://img.shields.io/coveralls/stream-utils/destroy.svg?style=flat-square 56 56
https://coveralls.io/r/stream-utils/destroy?branch=master 57 57
http://img.shields.io/npm/l/destroy.svg?style=flat-square 58 58
http://img.shields.io/npm/dm/destroy.svg?style=flat-square 60 60
https://img.shields.io/github/workflow/status/stream-utils/destroy/ci/master?label=ci&style=flat-square 62 62
https://github.com/stream-utils/destroy/actions/workflows/ci.yml 63 63
Package URL License Primary language
pkg:npm/acme-demo-app@1.0.0 JavaScript
pkg:npm/destroy@1.2.0 mit JavaScript