unfurler

1.1.1 • Public • Published

unfurler

Support functions for unfurling an array

Usage

Takes an array of functions and returns a function that calls all the functions within it.

var a = function() { console.log("a"); };
var b = function() { console.log("b"); };
var unfurled = require('unfurler').array([a, b]);
unfurled();
//a
//b

If given a single function it just returns that function.

var a = function() { console.log("a"); };
var unfurled = require('unfurler').array(a);
unfurled();
//a

If asked for a guarantee it will return an empty function rather than return undefined.

var unfurled = require('unfurler').arrayWithGuarentee();
unfurled(); //doesn't crap out.

And you can pass functions to the unfurled function and the arguments will be pass down to all the inner functions.

var a = function(a, b, c) { console.log(a, b, c); };
var b = function(a, b, c) { console.log(* 2, b * 2, c * 2); };
var unfurled = require('unfurler').array([a, b]);
unfurled(1,2,3);
//1, 2, 3
//2, 4, 6

Readme

Keywords

Package Sidebar

Install

npm i unfurler

Weekly Downloads

3

Version

1.1.1

License

BSD

Last publish

Collaborators

  • distributedlife