Rename _.first to _.head, _.rest to _.tail, & _.restParam to _.rest.

This commit is contained in:
John-David Dalton
2015-10-14 17:55:01 -07:00
parent da993ee48d
commit e22cb5f3b3
4 changed files with 773 additions and 752 deletions

View File

@@ -32,7 +32,7 @@
return function(_) {
lodash.defaultsDeep(_, { 'templateSettings': lodash.templateSettings });
lodash.mixin(_ , { 'indexBy': lodash.keyBy });
lodash.mixin(_ , { 'indexBy': lodash.keyBy, 'rest': lodash.tail });
lodash.mixin(_, lodash.pick(lodash, lodash.difference(lodash.functions(lodash), lodash.functions(_))));
};
}());