0.1.1 • Published 9 years ago

underscore.catenate v0.1.1

Weekly downloads
100
License
-
Repository
-
Last release
9 years ago

underscore.catenate Build Status

This library is an extension for Underscore which allows chaining functions into a single method that executes them in sequence.

Features

  • Catenate merged functions.

Dependencies

  • underscore.js (>= 1.5.0)

Node

var _ = require('underscore');
_.mixin(require('underscore.catenate'));

Examples

var hello = function() {
  console.log('hello');
};

var world = function() {
  console.log('world');
};

var helloWorld = _.catenate(hello, world);
helloWorld(); // hello world

License

Copyright (c) 2013-2014 Mateus Maso. Released under an MIT license.