Skip to content

Commit

Permalink
Remove “static” jsdoc tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalton committed Jan 10, 2017
1 parent c500b2c commit 8c97051
Show file tree
Hide file tree
Showing 280 changed files with 0 additions and 280 deletions.
1 change: 0 additions & 1 deletion add.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion after.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion ary.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion assignIn.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import keysIn from './keysIn.js';
*
* **Note:** This method mutates `object`.
*
* @static
* @since 4.0.0
* @alias extend
* @category Object
Expand Down
1 change: 0 additions & 1 deletion assignInWith.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import keysIn from './keysIn.js';
*
* **Note:** This method mutates `object`.
*
* @static
* @since 4.0.0
* @alias extendWith
* @category Object
Expand Down
1 change: 0 additions & 1 deletion assignWith.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion at.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion attempt.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion before.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion bind.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion bindAll.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion bindKey.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion camelCase.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion capitalize.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion castArray.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion ceil.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion chunk.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion clamp.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion clone.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion cloneDeep.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion cloneDeepWith.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion cloneWith.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion compact.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion concat.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion cond.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion conforms.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion conformsTo.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion constant.js
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
1 change: 0 additions & 1 deletion countBy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion create.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion curry.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion curryRight.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion debounce.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion deburr.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion defaultTo.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion defaultsDeep.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion defer.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion delay.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion difference.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion differenceBy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion differenceWith.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion divide.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion drop.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion dropRight.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion dropRightWhile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion dropWhile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion endsWith.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion eq.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion escape.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading

0 comments on commit 8c97051

Please sign in to comment.