Rebuild docs and dist.

This commit is contained in:
John-David Dalton
2014-02-11 00:39:05 -08:00
parent 4b448a877c
commit fad43842a4
6 changed files with 51 additions and 51 deletions

14
dist/lodash.js vendored
View File

@@ -650,7 +650,7 @@
* `curry`, `debounce`, `defaults`, `defer`, `delay`, `difference`, `filter`,
* `flatten`, `forEach`, `forEachRight`, `forIn`, `forInRight`, `forOwn`,
* `forOwnRight`, `functions`, `groupBy`, `indexBy`, `initial`, `intersection`,
* `invert`, `invoke`, `keys`, `map`, `mapValues`, `match`, `max`, `memoize`,
* `invert`, `invoke`, `keys`, `map`, `mapValues`, `matches`, `max`, `memoize`,
* `merge`, `min`, `noop`, `object`, `omit`, `once`, `pairs`, `partial`,
* `partialRight`, `pick`, `pluck`, `property`, `pull`, `push`, `range`,
* `reject`, `remove`, `rest`, `reverse`, `shuffle`, `slice`, `sort`, `sortBy`,
@@ -6720,7 +6720,7 @@
func || baseCreateCallback(func, thisArg, argCount);
}
// handle "_.pluck" and "_.where" style callback shorthands
return type != 'object' ? property(func) : match(func);
return type != 'object' ? property(func) : matches(func);
}
/**
@@ -6758,15 +6758,15 @@
* { 'name': 'barney', 'age': 36 }
* ];
*
* var matchAge = _.match({ 'age': 36 });
* var matchesAge = _.matches({ 'age': 36 });
*
* _.filter(characters, matchAge);
* _.filter(characters, matchesAge);
* // => [{ 'name': 'barney', 'age': 36 }]
*
* _.find(characters, matchAge);
* _.find(characters, matchesAge);
* // => { 'name': 'barney', 'age': 36 }
*/
function match(source) {
function matches(source) {
source || (source = {});
var props = keys(source),
@@ -7180,7 +7180,7 @@
lodash.keys = keys;
lodash.map = map;
lodash.mapValues = mapValues;
lodash.match = match;
lodash.matches = matches;
lodash.max = max;
lodash.memoize = memoize;
lodash.merge = merge;