call-all-fns

1.0.1 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i call-all-fns

Weekly Downloads

470

Version

1.0.1

License

MIT

Last publish

Collaborators

  • bendrucker