From b8060a5bcc01abe4e1d5e4db033537aab9282e85 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 16 Jul 2015 20:59:02 -0700 Subject: [PATCH] Add more methods to the `lodash` doc note. [ci skip] --- lodash.src.js | 50 ++++++++++++++++++++++++++------------------------ 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index 6f9544060..18c1692ae 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -846,39 +846,41 @@ * `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray` * * The chainable wrapper methods are: - * `after`, `ary`, `assign`, `at`, `before`, `bind`, `bindAll`, `bindKey`, - * `callback`, `chain`, `chunk`, `commit`, `compact`, `concat`, `constant`, + * `after`, `ary`, `assign`, `assignWith`, `at`, `before`, `bind`, `bindAll`, + * `bindKey`, `chain`, `chunk`, `commit`, `compact`, `concat`, `constant`, * `countBy`, `create`, `curry`, `debounce`, `defaults`, `defaultsDeep`, * `defer`, `delay`, `difference`, `drop`, `dropRight`, `dropRightWhile`, - * `dropWhile`, `fill`, `filter`, `flatten`, `flattenDeep`, `flow`, `flowRight`, - * `forEach`, `forEachRight`, `forIn`, `forInRight`, `forOwn`, `forOwnRight`, - * `functions`, `groupBy`, `indexBy`, `initial`, `intersection`, `invert`, - * `invoke`, `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, - * `matchesProperty`, `memoize`, `merge`, `method`, `methodOf`, `mixin`, - * `modArgs`, `negate`, `omit`, `once`, `pairs`, `partial`, `partialRight`, - * `partition`, `pick`, `plant`, `property`, `propertyOf`, `pull`, `pullAt`, + * `dropWhile`, `extend`, `extendWith`, `fill`, `filter`, `flatten`, + * `flattenDeep`, `flow`, `flowRight`, `forEach`, `forEachRight`, `forIn`, + * `forInRight`, `forOwn`, `forOwnRight`, `functions`, `groupBy`, `indexBy`, + * `initial`, `intersection`, `invert`, `invoke`, `iteratee`, `keys`, `keysIn`, + * `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`, `memoize`, + * `merge`, `mergeWith` `method`, `methodOf`, `mixin`, `modArgs`, `negate`, + * `omit`, `omitBy`, `once`, `pairs`, `partial`, `partialRight`, `partition`, + * `pick`, `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAt`, * `push`, `range`, `rearg`, `reject`, `remove`, `rest`, `restParam`, `reverse`, * `set`, `shuffle`, `slice`, `sort`, `sortBy`, `sortByOrder`, `splice`, * `spread`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, `tap`, * `throttle`, `thru`, `times`, `toArray`, `toPlainObject`, `transform`, - * `union`, `uniq`, `unshift`, `unzip`, `unzipWith`, `values`, `valuesIn`, - * `without`, `wrap`, `xor`, `zip`, `zipObject`, `zipWith` + * `union`, `uniq`, `uniqBy`, `unshift`, `unzip`, `unzipWith`, `values`, + * `valuesIn`, `without`, `wrap`, `xor`, `zip`, `zipObject`, `zipWith` * * The wrapper methods that are **not** chainable by default are: * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clone`, `cloneDeep`, - * `deburr`, `endsWith`, `escape`, `escapeRegExp`, `every`, `find`, `findIndex`, - * `findKey`, `findLast`, `findLastIndex`, `findLastKey`, `first`, `floor`, - * `get`, `gt`, `gte`, `has`, `identity`, `includes`, `indexOf`, `inRange`, - * `isArguments`, `isArray`, `isBoolean`, `isDate`, `isElement`, `isEmpty`, - * `isEqual`, `isError`, `isFinite` `isFunction`, `isMatch`, `isNative`, - * `isNaN`, `isNull`, `isNumber`, `isObject`, `isPlainObject`, `isRegExp`, - * `isString`, `isUndefined`, `isTypedArray`, `join`, `kebabCase`, `last`, - * `lastIndexOf`, `lt`, `lte`, `max`, `min`, `noConflict`, `noop`, `now`, `pad`, - * `padLeft`, `padRight`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`, - * `repeat`, `result`, `round`, `runInContext`, `shift`, `size`,`snakeCase`, - * `some`, `sortedIndex`, `sortedLastIndex`, `startCase`, `startsWith`, `sum`, - * `template`, `trim`, `trimLeft`, `trimRight`, `trunc`, `unescape`, `uniqueId`, - * `value`, and `words` + * `cloneDeepWith`, `cloneWith`, `deburr`, `endsWith`, `escape`, `escapeRegExp`, + * `every`, `find`, `findIndex`, `findKey`, `findLast`, `findLastIndex`, + * `findLastKey`, `first`, `floor`, `get`, `gt`, `gte`, `has`, `identity`, + * `includes`, `indexOf`, `inRange`, `isArguments`, `isArray`, `isBoolean`, + * `isDate`, `isElement`, `isEmpty`, `isEqual`, `isEqualWith`, `isError`, + * `isFinite` `isFunction`, `isMatch`, `isMatchWith`, `isNative`, `isNaN`, + * `isNull`, `isNumber`, `isObject`, `isPlainObject`, `isRegExp`, `isString`, + * `isUndefined`, `isTypedArray`, `join`, `kebabCase`, `last`, `lastIndexOf`, + * `lt`, `lte`, `max`, `min`, `noConflict`, `noop`, `now`, `pad`, `padLeft`, + * `padRight`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`, `repeat`, + * `result`, `round`, `runInContext`, `shift`, `size`, `snakeCase`, `some`, + * `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`, `sortedLastIndexBy`, + * `startCase`, `startsWith`, `sum`, `sumBy`, `template`, `trim`, `trimLeft`, + * `trimRight`, `trunc`, `unescape`, `uniqueId`, `value`, and `words` * * The wrapper method `sample` will return a wrapped value when `n` is provided, * otherwise an unwrapped value is returned.