yeoman-generator
Version:
Rails-inspired generator system that provides scaffolding for your apps
24 lines (20 loc) • 418 B
JavaScript
;
var _ = require('lodash');
_.str = require('underscore.string');
_.mixin(_.str.exports());
/**
* @mixin
* @alias actions/string
*/
var string = module.exports;
/**
* Mix in non-conflicting functions to underscore namespace and generators.
*
* @mixes lodash
* @mixes underscore.string
* @example
*
* this._.humanize('stuff-dash');
* this._.classify('hello-model');
*/
string._ = _;