|
1 | 1 | /**
|
2 | 2 | * @license
|
3 |
| - * lodash 4.4.0 (Custom Build) <https://lodash.com/> |
| 3 | + * lodash 4.5.0 (Custom Build) <https://lodash.com/> |
4 | 4 | * Build: `lodash core -o ./dist/lodash.core.js`
|
5 | 5 | * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
|
6 | 6 | * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
|
13 | 13 | var undefined;
|
14 | 14 |
|
15 | 15 | /** Used as the semantic version number. */
|
16 |
| - var VERSION = '4.4.0'; |
| 16 | + var VERSION = '4.5.0'; |
17 | 17 |
|
18 | 18 | /** Used to compose bitmasks for wrapper metadata. */
|
19 | 19 | var BIND_FLAG = 1,
|
|
449 | 449 | * The wrapper methods that are **not** chainable by default are:
|
450 | 450 | * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`,
|
451 | 451 | * `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` |
471 | 472 | *
|
472 | 473 | * @name _
|
473 | 474 | * @constructor
|
|
0 commit comments