find-replace
Find and replace items in an array.
Example
> findReplace = require("find-replace");
> findReplace([ 1, 2, 3], 2, "two")
[ 1, 'two', 3 ]
> findReplace([ 1, 2, 3], 2, [ "two", "zwei" ])
[ 1, [ 'two', 'zwei' ], 3 ]
> findReplace([ 1, 2, 3], 2, "two", "zwei")
[ 1, 'two', 'zwei', 3 ]
findReplace(array, valueTest, [...replaceWith]) ⇒ array
⏏
Kind: Exported function
Param | Type | Description |
---|
array | array | the input array |
valueTest | valueTest | a query to match the value you're looking for |
[...replaceWith] | any | optional replacement items |
© 2015 Lloyd Brookes <75pound@gmail.com>. Documented by jsdoc-to-markdown.