middlewrap

0.3.0 • Public • Published

middlewrap

A utility for wrapping functions in stacks of middleware. A cut down version of hooks.

Usage

var stack = [function (next, a, b) { console.log(a, b); next() }, console.dir]

var f = function (a, b, cb) {
  if (a === b) return cb('yes');
  return cb('no');
};

f = wrap(f, stack);

/middlewrap/

    Package Sidebar

    Install

    npm i middlewrap

    Weekly Downloads

    2

    Version

    0.3.0

    License

    BSD

    Last publish

    Collaborators

    • adamvr