Simplify getMethodAssignments, add removeMethodAssignments, and avoid some cleanup when the --no-dep flag is passed in build.js.

Former-commit-id: aebfc41fdde98df243c4620ee729977775cba52b
This commit is contained in:
John-David Dalton
2013-06-19 08:39:12 -07:00
parent 2bc343b524
commit b4adc127a4
3 changed files with 116 additions and 91 deletions

View File

@@ -4384,9 +4384,6 @@
lodash.take = first;
lodash.head = first;
// add functions to `lodash.prototype`
mixin(lodash);
/*--------------------------------------------------------------------------*/
/**
@@ -4398,6 +4395,9 @@
*/
lodash.VERSION = '1.3.1';
// add functions to `lodash.prototype`
mixin(lodash);
// add "Chaining" functions to the wrapper
lodash.prototype.chain = wrapperChain;
lodash.prototype.value = wrapperValueOf;