0.0.2 • Published 12 years ago
underscorize v0.0.2
underscorize.js
In place bindings of underscore.js to get rid of the underscore.
Installation
npm install underscorizeUsage
Instead of
var _ = require('underscore');
var args = _.drop(process.argv, 2);use
require('underscorize');
var args = process.argv.drop(2);etc. pp.