Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

nofilter-react-native

hildjj16MIT0.1.4TypeScript support: included

Read and write a growable buffer as a stream

buffer, stream, duplex, transform, #nofilter, no-filter, concat

readme

Tests coverage

NoFilter

A node.js package to read and write a stream of data into or out of what looks like a growable Buffer.

I kept needing this, and none of the existing packages seemed to have enough features, test coverage, etc.

Examples

As a data sink:

import { NoFilter } from 'nofilter'

const nf = new NoFilter()
nf.on('finish', () => {
  console.log(nf.toString('base64'))
})
process.stdin.pipe(nf)

As a data source:

import { NoFilter } from 'nofilter'
const nf = new NoFilter('010203', 'hex')
nf.pipe(process.stdout)

Read the API Docs.

changelog

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog. This project adheres to Semantic Versioning.

[4.0.0] - 2023-05-13

Changed

  • Now requires use as an ES6 module.
  • Now requires Node.js version 16 or greater
  • Now generates docs with typedoc
  • Now uses c8 for coverage instead of nyc
  • Updated all dependencies. Removed unused dependencies.