npm.io
1.0.1 • Published 9 years ago

call-all-fns

Licence
MIT
Version
1.0.1
Deps
0
Vulns
0
Weekly
0
Stars
3

call-all-fns Build Status

Wrap a set of functions in a single function that calls each

Install

$ npm install --save call-all-fns

Usage

var callAll = require('call-all-fns')

var all = callAll([
  function (value) {
    return value + 1
  },
  function (value) {
    return value + 2
  } 
])
all(1)
//=> [2, 3]

API

callAll(fns) -> function

Returns a function that will pass all arguments to the fns and then return an array of results.

fns

Required
Type: array[function] / functions...

An array of functions. Functions can also be provided as a variadic set of arguments.

License

MIT Ben Drucker

Keywords