iterable-transform-replace
v1.2.0
Published
An iterable transform that apply replace to all items
Maintainers
Readme
iterable-transform-replace
An iterable transform that apply replace to all items
Usage
This example replace response with 42:
const replace = require('iterable-transform-replace');
const source = [1, 2, 'response', 3];
console.log(Array.from(replace('response', 42, source)));This will output
[1, 2, 42, 3]API
const iterableTransformReplace = (oldItem: any, newItem: any, source: Iterable): IterableGiven an iterable source object, return another iterable with all items equal
to oldItem replaced with newItem.
Install
With npm installed, run
$ npm install iterable-transform-replaceSee Also
License
MIT
