JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3130047
  • Score
    100M100P100Q199590F
  • License MIT

Find and either replace or remove items from an array

Package Exports

  • find-replace

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (find-replace) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

view on npm npm module downloads Build Status Dependency Status js-standard-style

find-replace

Find and either replace or remove items from 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([ 1, 2, 3], 2) // no replacement, so remove
[ 1, 3 ]

findReplace(array, valueTest, [...replaceWith]) ⇒ array

Kind: Exported function

Param Type Description
array array the input array
valueTest valueTest a test-value query to match the value you're looking for
[...replaceWith] any If specified, found values will be replaced with these values, else removed.

© 2015-18 Lloyd Brookes <75pound@gmail.com>. Documented by jsdoc-to-markdown.