Skip to content

Commit a4f7d4c

Browse files
committed
Rebuild lodash and docs.
1 parent cca5ac6 commit a4f7d4c

File tree

9 files changed

+385
-384
lines changed

9 files changed

+385
-384
lines changed

dist/lodash.core.js

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @license
3-
* lodash 4.4.0 (Custom Build) <https://lodash.com/>
3+
* lodash 4.5.0 (Custom Build) <https://lodash.com/>
44
* Build: `lodash core -o ./dist/lodash.core.js`
55
* Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
66
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
@@ -13,7 +13,7 @@
1313
var undefined;
1414

1515
/** Used as the semantic version number. */
16-
var VERSION = '4.4.0';
16+
var VERSION = '4.5.0';
1717

1818
/** Used to compose bitmasks for wrapper metadata. */
1919
var BIND_FLAG = 1,
@@ -449,25 +449,26 @@
449449
* The wrapper methods that are **not** chainable by default are:
450450
* `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`,
451451
* `cloneDeep`, `cloneDeepWith`, `cloneWith`, `deburr`, `endsWith`, `eq`,
452-
* `escape`, `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`,
453-
* `findLast`, `findLastIndex`, `findLastKey`, `floor`, `forEach`, `forEachRight`,
454-
* `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`,
455-
* `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`,
456-
* `isArguments`, `isArray`, `isArrayLike`, `isArrayLikeObject`, `isBoolean`,
457-
* `isDate`, `isElement`, `isEmpty`, `isEqual`, `isEqualWith`, `isError`,
458-
* `isFinite`, `isFunction`, `isInteger`, `isLength`, `isMatch`, `isMatchWith`,
459-
* `isNaN`, `isNative`, `isNil`, `isNull`, `isNumber`, `isObject`, `isObjectLike`,
460-
* `isPlainObject`, `isRegExp`, `isSafeInteger`, `isString`, `isUndefined`,
461-
* `isTypedArray`, `join`, `kebabCase`, `last`, `lastIndexOf`, `lowerCase`,
462-
* `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `min`, `minBy`,
463-
* `noConflict`, `noop`, `now`, `pad`, `padEnd`, `padStart`, `parseInt`,
464-
* `pop`, `random`, `reduce`, `reduceRight`, `repeat`, `result`, `round`,
465-
* `runInContext`, `sample`, `shift`, `size`, `snakeCase`, `some`, `sortedIndex`,
466-
* `sortedIndexBy`, `sortedLastIndex`, `sortedLastIndexBy`, `startCase`,
467-
* `startsWith`, `subtract`, `sum`, `sumBy`, `template`, `times`, `toLower`,
468-
* `toInteger`, `toLength`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`,
469-
* `trim`, `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`,
470-
* `upperCase`, `upperFirst`, `value`, and `words`
452+
* `escape`, `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`,
453+
* `findLastIndex`, `findLastKey`, `floor`, `forEach`, `forEachRight`, `forIn`,
454+
* `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`, `hasIn`,
455+
* `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`, `isArguments`,
456+
* `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`, `isBoolean`,
457+
* `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`, `isEqualWith`,
458+
* `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`, `isMap`,
459+
* `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`, `isNumber`,
460+
* `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`, `isSafeInteger`,
461+
* `isSet`, `isString`, `isUndefined`, `isTypedArray`, `isWeakMap`, `isWeakSet`,
462+
* `join`, `kebabCase`, `last`, `lastIndexOf`, `lowerCase`, `lowerFirst`,
463+
* `lt`, `lte`, `max`, `maxBy`, `mean`, `min`, `minBy`, `noConflict`, `noop`,
464+
* `now`, `pad`, `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`,
465+
* `reduceRight`, `repeat`, `result`, `round`, `runInContext`, `sample`,
466+
* `shift`, `size`, `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`,
467+
* `sortedLastIndex`, `sortedLastIndexBy`, `startCase`, `startsWith`, `subtract`,
468+
* `sum`, `sumBy`, `template`, `times`, `toLower`, `toInteger`, `toLength`,
469+
* `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`, `trimEnd`,
470+
* `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`, `upperFirst`,
471+
* `value`, and `words`
471472
*
472473
* @name _
473474
* @constructor

dist/lodash.core.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lodash.fp.js

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,6 @@ return /******/ (function(modules) { // webpackBootstrap
146146

147147
var aryMethodKeys = keys(mapping.aryMethod);
148148

149-
var baseArity = function(func, n) {
150-
return n == 2
151-
? function(a, b) { return func.apply(undefined, arguments); }
152-
: function(a) { return func.apply(undefined, arguments); };
153-
};
154-
155149
var baseAry = function(func, n) {
156150
return n == 2
157151
? function(a, b) { return func(a, b); }
@@ -192,7 +186,9 @@ return /******/ (function(modules) { // webpackBootstrap
192186

193187
var iterateeAry = function(func, n) {
194188
return overArg(func, function(func) {
195-
return baseAry(func, n);
189+
return typeof func == 'function'
190+
? baseAry(func, n)
191+
: func;
196192
});
197193
};
198194

dist/lodash.fp.min.js

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)