Socket
Socket
Sign inDemoInstall

stream.finished

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stream.finished

Polyfill/shim for stream.finished in node versions < v10


Version published
Weekly downloads
22K
decreased by-12.21%
Maintainers
1
Weekly downloads
 
Created
Source

stream.finished

Build Status npm

Polyfill for stream.finished in node versions < v10

node v10.0.0 added support for a built-in stream.finished: https://github.com/nodejs/node/pull/19828

This package provides the built-in stream.finished in node v10.0.0 and later, and a replacement in other environments.

This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec.

Usage

Direct

const finished = require('stream.finished');
// Use `finished` just like the built-in method on `stream`

Shim

require('stream.finished/shim')();
// `stream.finished` is now defined
const stream = require('stream');
// Use `stream.finished`

or:

require('stream.finished/auto');
// `stream.finished` is now defined
const stream = require('stream');
// Use `stream.finished`

Keywords

FAQs

Package last updated on 08 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc