arr-filter-fn
v1.0.0
Published
Filter and flattenify array to have only function values. Much like `arr-filter-function` package, but with flatten.
Downloads
1
Readme
arr-filter-fn
Filter and flattenify array to have only function values. Much like
arr-filter-function
package, but with arr-flatten.
Install
npm i arr-filter-fn --save
npm test
API
For more use-cases see the tests
arrFilterFn
Filter and flatten array for function values.
<arr>
{Array} array will be arr-flatten-ed first[iterator]
{Function}returns
{Array}: filtered array, containing only functions
Example
var filter = require('arr-filter-fn')
function fn1 () {}
function fn2 () {}
function fn3 () {}
var arr = filter([fn2, 'abc', [1, 2, [fn3, 3]], fn1])
//=> [fn2, fn3, fn1]
Related
- apidocs-cli: Async CLI for automatically generating API docs from code comments with
helper-apidocs
- arr-filter: Faster alternative to javascript's native filter method.
- arr-filter-function: Fast filter array to have only function values. But also… more
- filter-array: Iterates over the elements in an array, returning an array with only the elements for which the callback returns truthy.
- filter-values: Filter an object values using glob patterns or with a… more
- filter-functions: Filter an array to have only function values, or an object to have only properties with function values.
- npm-related: Thin wrapper on top of
helper-related
for generating a list of links to the homepages of related NPM projects.
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
But before doing anything, please read the CONTRIBUTING.md guidelines.