1.0.1 • Published 7 years ago

call-all-fns v1.0.1

Weekly downloads
1,099
License
MIT
Repository
github
Last release
7 years ago

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