Make _.max and _.min return unwrapped values when chaining.

This commit is contained in:
John-David Dalton
2014-06-16 09:07:47 -07:00
parent cc7b413a2a
commit 4f9da35b76
2 changed files with 26 additions and 9 deletions

View File

@@ -8677,10 +8677,8 @@
lodash.map = map;
lodash.mapValues = mapValues;
lodash.matches = matches;
lodash.max = max;
lodash.memoize = memoize;
lodash.merge = merge;
lodash.min = min;
lodash.mixin = mixin;
lodash.negate = negate;
lodash.omit = omit;
@@ -8775,6 +8773,8 @@
lodash.isUndefined = isUndefined;
lodash.kebabCase = kebabCase;
lodash.lastIndexOf = lastIndexOf;
lodash.max = max;
lodash.min = min;
lodash.noConflict = noConflict;
lodash.noop = noop;
lodash.now = now;