reduce-without
v1.0.1
Published
reduce-without
Downloads
919,230
Readme
reduce-without
Example
const without = require('reduce-without')
without(toRemove) ⇒ Array ⏏
Returns a new array with the same content as the input minus the specified values.
Kind: Exported function
| Param | Type | Description | | --- | --- | --- | | toRemove | any | Array.<any> | one, or more test-value queries |
Example
> [ 1, 2, 3 ].reduce(without(2))
[ 1, 3 ]
> [ 1, 2, 3 ].reduce(without([ 2, 3 ]))
[ 1 ]
> data = [
{ name: "Dana", age: 30 },
{ name: "Yana", age: 20 },
{ name: "Zhana", age: 10 }
]
> data.reduce(without({ name: /ana/ }))
[]
© 2016 Lloyd Brookes <[email protected]>. Documented by jsdoc-to-markdown.