Remove “static” jsdoc tag.

This commit is contained in:
John-David Dalton
2017-01-10 00:50:26 -08:00
parent c500b2cc16
commit 8c97051909
280 changed files with 0 additions and 280 deletions

1
add.js
View File

@@ -3,7 +3,6 @@ import createMathOperation from './.internal/createMathOperation.js';
/**
* Adds two numbers.
*
* @static
* @since 3.4.0
* @category Math
* @param {number} augend The first number in an addition.

View File

@@ -4,7 +4,6 @@ import toInteger from './toInteger.js';
* The opposite of `before`; this method creates a function that invokes
* `func` once it's called `n` or more times.
*
* @static
* @since 0.1.0
* @category Function
* @param {number} n The number of calls before `func` is invoked.

1
ary.js
View File

@@ -7,7 +7,6 @@ const WRAP_ARY_FLAG = 128;
* Creates a function that invokes `func`, with up to `n` arguments,
* ignoring any additional arguments.
*
* @static
* @since 3.0.0
* @category Function
* @param {Function} func The function to cap arguments for.

View File

@@ -8,7 +8,6 @@ import keysIn from './keysIn.js';
*
* **Note:** This method mutates `object`.
*
* @static
* @since 4.0.0
* @alias extend
* @category Object

View File

@@ -10,7 +10,6 @@ import keysIn from './keysIn.js';
*
* **Note:** This method mutates `object`.
*
* @static
* @since 4.0.0
* @alias extendWith
* @category Object

View File

@@ -10,7 +10,6 @@ import keys from './keys.js';
*
* **Note:** This method mutates `object`.
*
* @static
* @since 4.0.0
* @category Object
* @param {Object} object The destination object.

1
at.js
View File

@@ -3,7 +3,6 @@ import baseAt from './.internal/baseAt.js';
/**
* Creates an array of values corresponding to `paths` of `object`.
*
* @static
* @since 1.0.0
* @category Object
* @param {Object} object The object to iterate over.

View File

@@ -5,7 +5,6 @@ import isError from './isError.js';
* Attempts to invoke `func`, returning either the result or the caught error
* object. Any additional arguments are provided to `func` when it's invoked.
*
* @static
* @since 3.0.0
* @category Util
* @param {Function} func The function to attempt.

View File

@@ -5,7 +5,6 @@ import toInteger from './toInteger.js';
* of the created function, while it's called less than `n` times. Subsequent
* calls to the created function return the result of the last `func` invocation.
*
* @static
* @since 3.0.0
* @category Function
* @param {number} n The number of calls at which `func` is no longer invoked.

View File

@@ -16,7 +16,6 @@ const WRAP_PARTIAL_FLAG = 32;
* **Note:** Unlike native `Function#bind`, this method doesn't set the "length"
* property of bound functions.
*
* @static
* @since 0.1.0
* @category Function
* @param {Function} func The function to bind.

View File

@@ -9,7 +9,6 @@ import toKey from './.internal/toKey.js';
*
* **Note:** This method doesn't set the "length" property of bound functions.
*
* @static
* @since 0.1.0
* @category Util
* @param {Object} object The object to bind and assign the bound methods to.

View File

@@ -19,7 +19,6 @@ const WRAP_PARTIAL_FLAG = 32;
* The `bindKey.placeholder` value, which defaults to `_` in monolithic
* builds, may be used as a placeholder for partially applied arguments.
*
* @static
* @since 0.10.0
* @category Function
* @param {Object} object The object to invoke the method on.

View File

@@ -4,7 +4,6 @@ import createCompounder from './.internal/createCompounder.js';
/**
* Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase).
*
* @static
* @since 3.0.0
* @category String
* @param {string} [string=''] The string to convert.

View File

@@ -5,7 +5,6 @@ import upperFirst from './upperFirst.js';
* Converts the first character of `string` to upper case and the remaining
* to lower case.
*
* @static
* @since 3.0.0
* @category String
* @param {string} [string=''] The string to capitalize.

View File

@@ -2,7 +2,6 @@
/**
* Casts `value` as an array if it's not one.
*
* @static
* @since 4.4.0
* @category Lang
* @param {*} value The value to inspect.

View File

@@ -3,7 +3,6 @@ import createRound from './.internal/createRound.js';
/**
* Computes `number` rounded up to `precision`.
*
* @static
* @since 3.10.0
* @category Math
* @param {number} number The number to round up.

View File

@@ -11,7 +11,6 @@ const nativeMax = Math.max;
* If `array` can't be split evenly, the final chunk will be the remaining
* elements.
*
* @static
* @since 3.0.0
* @category Array
* @param {Array} array The array to process.

View File

@@ -4,7 +4,6 @@ import toNumber from './toNumber.js';
/**
* Clamps `number` within the inclusive `lower` and `upper` bounds.
*
* @static
* @since 4.0.0
* @category Number
* @param {number} number The number to clamp.

View File

@@ -14,7 +14,6 @@ const CLONE_SYMBOLS_FLAG = 4;
* as plain objects. An empty object is returned for uncloneable values such
* as error objects, functions, DOM nodes, and WeakMaps.
*
* @static
* @since 0.1.0
* @category Lang
* @param {*} value The value to clone.

View File

@@ -7,7 +7,6 @@ const CLONE_SYMBOLS_FLAG = 4;
/**
* This method is like `clone` except that it recursively clones `value`.
*
* @static
* @since 1.0.0
* @category Lang
* @param {*} value The value to recursively clone.

View File

@@ -7,7 +7,6 @@ const CLONE_SYMBOLS_FLAG = 4;
/**
* This method is like `cloneWith` except that it recursively clones `value`.
*
* @static
* @since 4.0.0
* @category Lang
* @param {*} value The value to recursively clone.

View File

@@ -9,7 +9,6 @@ const CLONE_SYMBOLS_FLAG = 4;
* cloning is handled by the method instead. The `customizer` is invoked with
* up to four arguments; (value [, index|key, object, stack]).
*
* @static
* @since 4.0.0
* @category Lang
* @param {*} value The value to clone.

View File

@@ -2,7 +2,6 @@
* Creates an array with all falsey values removed. The values `false`, `null`,
* `0`, `""`, `undefined`, and `NaN` are falsey.
*
* @static
* @since 0.1.0
* @category Array
* @param {Array} array The array to compact.

View File

@@ -6,7 +6,6 @@ import copyArray from './.internal/copyArray.js';
* Creates a new array concatenating `array` with any additional arrays
* and/or values.
*
* @static
* @since 4.0.0
* @category Array
* @param {Array} array The array to concatenate.

View File

@@ -7,7 +7,6 @@ import arrayMap from './.internal/arrayMap.js';
* pairs are invoked with the `this` binding and arguments of the created
* function.
*
* @static
* @since 4.0.0
* @category Util
* @param {Array} pairs The predicate-function pairs.

View File

@@ -12,7 +12,6 @@ const CLONE_DEEP_FLAG = 1;
* **Note:** The created function is equivalent to `conformsTo` with
* `source` partially applied.
*
* @static
* @since 4.0.0
* @category Util
* @param {Object} source The object of property predicates to conform to.

View File

@@ -8,7 +8,6 @@ import keys from './keys.js';
* **Note:** This method is equivalent to `conforms` when `source` is
* partially applied.
*
* @static
* @since 4.14.0
* @category Lang
* @param {Object} object The object to inspect.

View File

@@ -1,7 +1,6 @@
/**
* Creates a function that returns `value`.
*
* @static
* @since 2.4.0
* @category Util
* @param {*} value The value to return from the new function.

View File

@@ -10,7 +10,6 @@ const hasOwnProperty = Object.prototype.hasOwnProperty;
* each key is the number of times the key was returned by `iteratee`. The
* iteratee is invoked with one argument: (value).
*
* @static
* @since 0.5.0
* @category Collection
* @param {Array|Object} collection The collection to iterate over.

View File

@@ -6,7 +6,6 @@ import baseCreate from './.internal/baseCreate.js';
* `properties` object is given, its own enumerable string keyed properties
* are assigned to the created object.
*
* @static
* @since 2.3.0
* @category Object
* @param {Object} prototype The object to inherit from.

View File

@@ -15,7 +15,6 @@ const WRAP_CURRY_FLAG = 8;
*
* **Note:** This method doesn't set the "length" property of curried functions.
*
* @static
* @since 2.0.0
* @category Function
* @param {Function} func The function to curry.

View File

@@ -12,7 +12,6 @@ const WRAP_CURRY_RIGHT_FLAG = 16;
*
* **Note:** This method doesn't set the "length" property of curried functions.
*
* @static
* @since 3.0.0
* @category Function
* @param {Function} func The function to curry.

View File

@@ -26,7 +26,6 @@ const nativeMin = Math.min;
* See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)
* for details over the differences between `debounce` and `throttle`.
*
* @static
* @since 0.1.0
* @category Function
* @param {Function} func The function to debounce.

View File

@@ -26,7 +26,6 @@ const reComboMark = RegExp(rsCombo, 'g');
* letters to basic Latin letters and removing
* [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks).
*
* @static
* @since 3.0.0
* @category String
* @param {string} [string=''] The string to deburr.

View File

@@ -3,7 +3,6 @@
* its place. The `defaultValue` is returned if `value` is `NaN`, `null`,
* or `undefined`.
*
* @static
* @since 4.14.0
* @category Util
* @param {*} value The value to check.

View File

@@ -10,7 +10,6 @@ import customDefaultsAssignIn from './.internal/customDefaultsAssignIn.js';
*
* **Note:** This method mutates `object`.
*
* @static
* @since 0.1.0
* @category Object
* @param {Object} object The destination object.

View File

@@ -8,7 +8,6 @@ import mergeWith from './mergeWith.js';
*
* **Note:** This method mutates `object`.
*
* @static
* @since 3.10.0
* @category Object
* @param {Object} object The destination object.

View File

@@ -4,7 +4,6 @@ import baseDelay from './.internal/baseDelay.js';
* Defers invoking the `func` until the current call stack has cleared. Any
* additional arguments are provided to `func` when it's invoked.
*
* @static
* @since 0.1.0
* @category Function
* @param {Function} func The function to defer.

View File

@@ -5,7 +5,6 @@ import toNumber from './toNumber.js';
* Invokes `func` after `wait` milliseconds. Any additional arguments are
* provided to `func` when it's invoked.
*
* @static
* @since 0.1.0
* @category Function
* @param {Function} func The function to delay.

View File

@@ -10,7 +10,6 @@ import isArrayLikeObject from './isArrayLikeObject.js';
*
* **Note:** Unlike `pullAll`, this method returns a new array.
*
* @static
* @since 0.1.0
* @category Array
* @param {Array} array The array to inspect.

View File

@@ -12,7 +12,6 @@ import last from './last.js';
*
* **Note:** Unlike `pullAllBy`, this method returns a new array.
*
* @static
* @since 4.0.0
* @category Array
* @param {Array} array The array to inspect.

View File

@@ -11,7 +11,6 @@ import last from './last.js';
*
* **Note:** Unlike `pullAllWith`, this method returns a new array.
*
* @static
* @since 4.0.0
* @category Array
* @param {Array} array The array to inspect.

View File

@@ -3,7 +3,6 @@ import createMathOperation from './.internal/createMathOperation.js';
/**
* Divide two numbers.
*
* @static
* @since 4.7.0
* @category Math
* @param {number} dividend The first number in a division.

View File

@@ -4,7 +4,6 @@ import toInteger from './toInteger.js';
/**
* Creates a slice of `array` with `n` elements dropped from the beginning.
*
* @static
* @since 0.5.0
* @category Array
* @param {Array} array The array to query.

View File

@@ -4,7 +4,6 @@ import toInteger from './toInteger.js';
/**
* Creates a slice of `array` with `n` elements dropped from the end.
*
* @static
* @since 3.0.0
* @category Array
* @param {Array} array The array to query.

View File

@@ -5,7 +5,6 @@ import baseWhile from './.internal/baseWhile.js';
* Elements are dropped until `predicate` returns falsey. The predicate is
* invoked with three arguments: (value, index, array).
*
* @static
* @since 3.0.0
* @category Array
* @param {Array} array The array to query.

View File

@@ -5,7 +5,6 @@ import baseWhile from './.internal/baseWhile.js';
* Elements are dropped until `predicate` returns falsey. The predicate is
* invoked with three arguments: (value, index, array).
*
* @static
* @since 3.0.0
* @category Array
* @param {Array} array The array to query.

View File

@@ -6,7 +6,6 @@ import toString from './toString.js';
/**
* Checks if `string` ends with the given target string.
*
* @static
* @since 3.0.0
* @category String
* @param {string} [string=''] The string to inspect.

1
eq.js
View File

@@ -3,7 +3,6 @@
* [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
* comparison between two values to determine if they are equivalent.
*
* @static
* @since 4.0.0
* @category Lang
* @param {*} value The value to compare.

View File

@@ -22,7 +22,6 @@ const reHasUnescapedHtml = RegExp(reUnescapedHtml.source);
* [quote attribute values](http://wonko.com/post/html-escaping) to reduce
* XSS vectors.
*
* @static
* @since 0.1.0
* @category String
* @param {string} [string=''] The string to escape.

View File

@@ -11,7 +11,6 @@ const reHasRegExpChar = RegExp(reRegExpChar.source);
* Escapes the `RegExp` special characters "^", "$", "\", ".", "*", "+",
* "?", "(", ")", "[", "]", "{", "}", and "|" in `string`.
*
* @static
* @since 3.0.0
* @category String
* @param {string} [string=''] The string to escape.

View File

@@ -12,7 +12,6 @@ import isIterateeCall from './.internal/isIterateeCall.js';
* [everything is true](https://en.wikipedia.org/wiki/Vacuous_truth) of
* elements of empty collections.
*
* @static
* @since 0.1.0
* @category Collection
* @param {Array|Object} collection The collection to iterate over.

View File

@@ -7,7 +7,6 @@ import isIterateeCall from './.internal/isIterateeCall.js';
*
* **Note:** This method mutates `array`.
*
* @static
* @since 3.2.0
* @category Array
* @param {Array} array The array to fill.

View File

@@ -8,7 +8,6 @@ import baseFilter from './.internal/baseFilter.js';
*
* **Note:** Unlike `remove`, this method returns a new array.
*
* @static
* @since 0.1.0
* @category Collection
* @param {Array|Object} collection The collection to iterate over.

View File

@@ -6,7 +6,6 @@ import findIndex from './findIndex.js';
* `predicate` returns truthy for. The predicate is invoked with three
* arguments: (value, index|key, collection).
*
* @static
* @since 0.1.0
* @category Collection
* @param {Array|Object} collection The collection to inspect.

View File

@@ -8,7 +8,6 @@ const nativeMax = Math.max;
* This method is like `find` except that it returns the index of the first
* element `predicate` returns truthy for instead of the element itself.
*
* @static
* @since 1.1.0
* @category Array
* @param {Array} array The array to inspect.

View File

@@ -5,7 +5,6 @@ import baseForOwn from './.internal/baseForOwn.js';
* This method is like `find` except that it returns the key of the first
* element `predicate` returns truthy for instead of the element itself.
*
* @static
* @since 1.1.0
* @category Object
* @param {Object} object The object to inspect.

View File

@@ -5,7 +5,6 @@ import findLastIndex from './findLastIndex.js';
* This method is like `find` except that it iterates over elements of
* `collection` from right to left.
*
* @static
* @since 2.0.0
* @category Collection
* @param {Array|Object} collection The collection to inspect.

View File

@@ -9,7 +9,6 @@ const nativeMin = Math.min;
* This method is like `findIndex` except that it iterates over elements
* of `collection` from right to left.
*
* @static
* @since 2.0.0
* @category Array
* @param {Array} array The array to inspect.

View File

@@ -5,7 +5,6 @@ import baseForOwnRight from './.internal/baseForOwnRight.js';
* This method is like `findKey` except that it iterates over elements of
* a collection in the opposite order.
*
* @static
* @since 2.0.0
* @category Object
* @param {Object} object The object to inspect.

View File

@@ -6,7 +6,6 @@ import map from './map.js';
* thru `iteratee` and flattening the mapped results. The iteratee is invoked
* with three arguments: (value, index|key, collection).
*
* @static
* @since 4.0.0
* @category Collection
* @param {Array|Object} collection The collection to iterate over.

View File

@@ -8,7 +8,6 @@ const INFINITY = 1 / 0;
* This method is like `flatMap` except that it recursively flattens the
* mapped results.
*
* @static
* @since 4.7.0
* @category Collection
* @param {Array|Object} collection The collection to iterate over.

View File

@@ -6,7 +6,6 @@ import toInteger from './toInteger.js';
* This method is like `flatMap` except that it recursively flattens the
* mapped results up to `depth` times.
*
* @static
* @since 4.7.0
* @category Collection
* @param {Array|Object} collection The collection to iterate over.

View File

@@ -3,7 +3,6 @@ import baseFlatten from './.internal/baseFlatten.js';
/**
* Flattens `array` a single level deep.
*
* @static
* @since 0.1.0
* @category Array
* @param {Array} array The array to flatten.

View File

@@ -6,7 +6,6 @@ const INFINITY = 1 / 0;
/**
* Recursively flattens `array`.
*
* @static
* @since 3.0.0
* @category Array
* @param {Array} array The array to flatten.

View File

@@ -4,7 +4,6 @@ import toInteger from './toInteger.js';
/**
* Recursively flatten `array` up to `depth` times.
*
* @static
* @since 4.4.0
* @category Array
* @param {Array} array The array to flatten.

View File

@@ -6,7 +6,6 @@ const WRAP_FLIP_FLAG = 512;
/**
* Creates a function that invokes `func` with arguments reversed.
*
* @static
* @since 4.0.0
* @category Function
* @param {Function} func The function to flip arguments for.

View File

@@ -3,7 +3,6 @@ import createRound from './.internal/createRound.js';
/**
* Computes `number` rounded down to `precision`.
*
* @static
* @since 3.10.0
* @category Math
* @param {number} number The number to round down.

View File

@@ -5,7 +5,6 @@ import createFlow from './.internal/createFlow.js';
* with the `this` binding of the created function, where each successive
* invocation is supplied the return value of the previous.
*
* @static
* @since 3.0.0
* @category Util
* @param {...(Function|Function[])} [funcs] The functions to invoke.

View File

@@ -4,7 +4,6 @@ import createFlow from './.internal/createFlow.js';
* This method is like `flow` except that it creates a function that
* invokes the given functions from right to left.
*
* @static
* @since 3.0.0
* @category Util
* @param {...(Function|Function[])} [funcs] The functions to invoke.

View File

@@ -10,7 +10,6 @@ import baseEach from './.internal/baseEach.js';;
* property are iterated like arrays. To avoid this behavior use `forIn`
* or `forOwn` for object iteration.
*
* @static
* @since 0.1.0
* @alias each
* @category Collection

View File

@@ -5,7 +5,6 @@ import baseEachRight from './.internal/baseEachRight.js';
* This method is like `forEach` except that it iterates over elements of
* `collection` from right to left.
*
* @static
* @since 2.0.0
* @alias eachRight
* @category Collection

View File

@@ -7,7 +7,6 @@ import keysIn from './keysIn.js';
* with three arguments: (value, key, object). Iteratee functions may exit
* iteration early by explicitly returning `false`.
*
* @static
* @since 0.3.0
* @category Object
* @param {Object} object The object to iterate over.

View File

@@ -5,7 +5,6 @@ import keysIn from './keysIn.js';
* This method is like `forIn` except that it iterates over properties of
* `object` in the opposite order.
*
* @static
* @since 2.0.0
* @category Object
* @param {Object} object The object to iterate over.

View File

@@ -6,7 +6,6 @@ import baseForOwn from './.internal/baseForOwn.js';
* arguments: (value, key, object). Iteratee functions may exit iteration
* early by explicitly returning `false`.
*
* @static
* @since 0.3.0
* @category Object
* @param {Object} object The object to iterate over.

View File

@@ -4,7 +4,6 @@ import baseForOwnRight from './.internal/baseForOwnRight.js';
* This method is like `forOwn` except that it iterates over properties of
* `object` in the opposite order.
*
* @static
* @since 2.0.0
* @category Object
* @param {Object} object The object to iterate over.

View File

@@ -2,7 +2,6 @@
* The inverse of `toPairs`; this method returns an object composed
* from key-value `pairs`.
*
* @static
* @since 4.0.0
* @category Array
* @param {Array} pairs The key-value pairs.

View File

@@ -5,7 +5,6 @@ import keys from './keys.js';
* Creates an array of function property names from own enumerable properties
* of `object`.
*
* @static
* @since 0.1.0
* @category Object
* @param {Object} object The object to inspect.

View File

@@ -5,7 +5,6 @@ import keysIn from './keysIn.js';
* Creates an array of function property names from own and inherited
* enumerable properties of `object`.
*
* @static
* @since 4.0.0
* @category Object
* @param {Object} object The object to inspect.

1
get.js
View File

@@ -4,7 +4,6 @@ import baseGet from './.internal/baseGet.js';
* Gets the value at `path` of `object`. If the resolved value is
* `undefined`, the `defaultValue` is returned in its place.
*
* @static
* @since 3.7.0
* @category Object
* @param {Object} object The object to query.

View File

@@ -11,7 +11,6 @@ const hasOwnProperty = Object.prototype.hasOwnProperty;
* value of each key is an array of elements responsible for generating the
* key. The iteratee is invoked with one argument: (value).
*
* @static
* @since 0.1.0
* @category Collection
* @param {Array|Object} collection The collection to iterate over.

1
gt.js
View File

@@ -4,7 +4,6 @@ import createRelationalOperation from './.internal/createRelationalOperation.js'
/**
* Checks if `value` is greater than `other`.
*
* @static
* @since 3.9.0
* @category Lang
* @param {*} value The value to compare.

1
gte.js
View File

@@ -3,7 +3,6 @@ import createRelationalOperation from './.internal/createRelationalOperation.js'
/**
* Checks if `value` is greater than or equal to `other`.
*
* @static
* @since 3.9.0
* @category Lang
* @param {*} value The value to compare.

1
has.js
View File

@@ -4,7 +4,6 @@ import hasPath from './.internal/hasPath.js';
/**
* Checks if `path` is a direct property of `object`.
*
* @static
* @since 0.1.0
* @category Object
* @param {Object} object The object to query.

View File

@@ -4,7 +4,6 @@ import hasPath from './.internal/hasPath.js';
/**
* Checks if `path` is a direct or inherited property of `object`.
*
* @static
* @since 4.0.0
* @category Object
* @param {Object} object The object to query.

View File

@@ -1,7 +1,6 @@
/**
* Gets the first element of `array`.
*
* @static
* @since 0.1.0
* @alias first
* @category Array

View File

@@ -1,7 +1,6 @@
/**
* This method returns the first argument it receives.
*
* @static
* @since 0.1.0
* @category Util
* @param {*} value Any value.

View File

@@ -8,7 +8,6 @@ import toNumber from './toNumber.js';
* If `start` is greater than `end` the params are swapped to support
* negative ranges.
*
* @static
* @since 3.3.0
* @category Number
* @param {number} number The number to check.

View File

@@ -14,7 +14,6 @@ const nativeMax = Math.max;
* is used for equality comparisons. If `fromIndex` is negative, it's used as
* the offset from the end of `collection`.
*
* @static
* @since 0.1.0
* @category Collection
* @param {Array|Object|string} collection The collection to inspect.

View File

@@ -10,7 +10,6 @@ const nativeMax = Math.max;
* for equality comparisons. If `fromIndex` is negative, it's used as the
* offset from the end of `array`.
*
* @static
* @since 0.1.0
* @category Array
* @param {Array} array The array to inspect.

View File

@@ -3,7 +3,6 @@ import baseSlice from './.internal/baseSlice.js';
/**
* Gets all but the last element of `array`.
*
* @static
* @since 0.1.0
* @category Array
* @param {Array} array The array to query.

View File

@@ -8,7 +8,6 @@ import castArrayLikeObject from './.internal/castArrayLikeObject.js';
* for equality comparisons. The order and references of result values are
* determined by the first array.
*
* @static
* @since 0.1.0
* @category Array
* @param {...Array} [arrays] The arrays to inspect.

View File

@@ -10,7 +10,6 @@ import last from './last.js';
* determined by the first array. The iteratee is invoked with one argument:
* (value).
*
* @static
* @since 4.0.0
* @category Array
* @param {...Array} [arrays] The arrays to inspect.

View File

@@ -9,7 +9,6 @@ import last from './last.js';
* of result values are determined by the first array. The comparator is
* invoked with two arguments: (arrVal, othVal).
*
* @static
* @since 4.0.0
* @category Array
* @param {...Array} [arrays] The arrays to inspect.

View File

@@ -7,7 +7,6 @@ import identity from './identity.js';
* If `object` contains duplicate values, subsequent values overwrite
* property assignments of previous values.
*
* @static
* @since 0.7.0
* @category Object
* @param {Object} object The object to invert.

View File

@@ -10,7 +10,6 @@ const hasOwnProperty = Object.prototype.hasOwnProperty;
* responsible for generating the inverted value. The iteratee is invoked
* with one argument: (value).
*
* @static
* @since 4.1.0
* @category Object
* @param {Object} object The object to invert.

View File

@@ -3,7 +3,6 @@ import baseInvoke from './.internal/baseInvoke.js';
/**
* Invokes the method at `path` of `object`.
*
* @static
* @since 4.0.0
* @category Object
* @param {Object} object The object to query.

View File

@@ -9,7 +9,6 @@ import isArrayLike from './isArrayLike.js';
* are provided to each invoked method. If `path` is a function, it's invoked
* for, and `this` bound to, each element in `collection`.
*
* @static
* @since 4.0.0
* @category Collection
* @param {Array|Object} collection The collection to iterate over.

View File

@@ -7,7 +7,6 @@ const argsTag = '[object Arguments]';
/**
* Checks if `value` is likely an `arguments` object.
*
* @static
* @since 0.1.0
* @category Lang
* @param {*} value The value to check.

View File

@@ -7,7 +7,6 @@ const nodeIsArrayBuffer = nodeUtil && nodeUtil.isArrayBuffer;
/**
* Checks if `value` is classified as an `ArrayBuffer` object.
*
* @static
* @since 4.3.0
* @category Lang
* @param {*} value The value to check.

Some files were not shown because too many files have changed in this diff Show More