From 022f79beed5004a131eae0c78c47659376828605 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 22 Oct 2015 17:33:08 -0700 Subject: [PATCH] Add lodash chaining doc notes for `_.clamp` and `_.toSafeInteger`. [ci skip] --- lodash.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lodash.js b/lodash.js index e13328422..03dbd7d57 100644 --- a/lodash.js +++ b/lodash.js @@ -1436,9 +1436,9 @@ * and `zipWith` * * The wrapper methods that are **not** chainable by default are: - * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clone`, `cloneDeep`, - * `cloneDeepWith`, `cloneWith`, `deburr`, `endsWith`, `eq`, `escape`, - * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`, + * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`, + * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `deburr`, `endsWith`, `eq`, + * `escape`, `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`, * `findLastIndex`, `findLastKey`, `floor`, `get`, `gt`, `gte`, `has`, `hasIn`, * `head`, `identity`, `includes`, `indexOf`, `inRange`, `isArguments`, `isArray`, * `isArrayLike`, `isArrayLikeObject`, `isBoolean`, `isDate`, `isElement`, @@ -1451,9 +1451,9 @@ * `random`, `reduce`, `reduceRight`, `repeat`, `result`, `round`, `runInContext`, * `sample`, `shift`, `size`, `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, * `sortedLastIndex`, `sortedLastIndexBy`, `startCase`, `startsWith`, `sum`, - * `sumBy`, `template`, `toLower`, `toInteger`, `toString`, `toUpper`, `trim`, - * `trimLeft`, `trimRight`, `trunc`, `unescape`, `uniqueId`, `upperCase`, - * `upperFirst`, `value`, and `words` + * `sumBy`, `template`, `toLower`, `toInteger`, `toSafeInteger`, `toString`, + * `toUpper`, `trim`, `trimLeft`, `trimRight`, `trunc`, `unescape`, `uniqueId`, + * `upperCase`, `upperFirst`, `value`, and `words` * * @name _ * @constructor