mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-13 04:17:49 +00:00
Remove doc references to this bindings and other dropped features. [ci skip]
This commit is contained in:
@@ -318,7 +318,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.findIndex` and `_.findLastIndex` without
|
* The base implementation of `_.findIndex` and `_.findLastIndex` without
|
||||||
* support for callback shorthands and `this` binding.
|
* support for callback shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to search.
|
* @param {Array} array The array to search.
|
||||||
@@ -1777,8 +1777,8 @@
|
|||||||
}());
|
}());
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.delay` and `_.defer` which accepts an index
|
* The base implementation of `_.delay` and `_.defer` which accepts an array
|
||||||
* of where to slice the arguments to provide to `func`.
|
* of `func` arguments.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Function} func The function to delay.
|
* @param {Function} func The function to delay.
|
||||||
@@ -1841,8 +1841,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.forEach` without support for callback
|
* The base implementation of `_.forEach` without support for callback shorthands.
|
||||||
* shorthands and `this` binding.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array|Object|string} collection The collection to iterate over.
|
* @param {Array|Object|string} collection The collection to iterate over.
|
||||||
@@ -1852,8 +1851,7 @@
|
|||||||
var baseEach = createBaseEach(baseForOwn);
|
var baseEach = createBaseEach(baseForOwn);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.forEachRight` without support for callback
|
* The base implementation of `_.forEachRight` without support for callback shorthands.
|
||||||
* shorthands and `this` binding.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array|Object|string} collection The collection to iterate over.
|
* @param {Array|Object|string} collection The collection to iterate over.
|
||||||
@@ -1863,8 +1861,7 @@
|
|||||||
var baseEachRight = createBaseEach(baseForOwnRight, true);
|
var baseEachRight = createBaseEach(baseForOwnRight, true);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.every` without support for callback
|
* The base implementation of `_.every` without support for callback shorthands.
|
||||||
* shorthands and `this` binding.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array|Object|string} collection The collection to iterate over.
|
* @param {Array|Object|string} collection The collection to iterate over.
|
||||||
@@ -1911,8 +1908,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.filter` without support for callback
|
* The base implementation of `_.filter` without support for callback shorthands.
|
||||||
* shorthands and `this` binding.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array|Object|string} collection The collection to iterate over.
|
* @param {Array|Object|string} collection The collection to iterate over.
|
||||||
@@ -1931,8 +1927,8 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.find`, `_.findLast`, `_.findKey`, and `_.findLastKey`,
|
* The base implementation of `_.find`, `_.findLast`, `_.findKey`, and `_.findLastKey`,
|
||||||
* without support for callback shorthands and `this` binding, which iterates
|
* without support for callback shorthands, which iterates over `collection`
|
||||||
* over `collection` using the provided `eachFunc`.
|
* using the provided `eachFunc`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array|Object|string} collection The collection to search.
|
* @param {Array|Object|string} collection The collection to search.
|
||||||
@@ -1953,8 +1949,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.flatten` with added support for restricting
|
* The base implementation of `_.flatten` with support for restricting flattening.
|
||||||
* flattening and specifying the start index.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to flatten.
|
* @param {Array} array The array to flatten.
|
||||||
@@ -1987,8 +1982,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.iteratee` which supports specifying the
|
* The base implementation of `_.iteratee`.
|
||||||
* number of arguments to provide to `func`.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {*} [func=_.identity] The value to convert to an iteratee.
|
* @param {*} [func=_.identity] The value to convert to an iteratee.
|
||||||
@@ -2037,8 +2031,7 @@
|
|||||||
var baseForRight = createBaseFor(true);
|
var baseForRight = createBaseFor(true);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.forIn` without support for callback
|
* The base implementation of `_.forIn` without support for callback shorthands.
|
||||||
* shorthands and `this` binding.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} object The object to iterate over.
|
* @param {Object} object The object to iterate over.
|
||||||
@@ -2050,8 +2043,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.forOwn` without support for callback
|
* The base implementation of `_.forOwn` without support for callback shorthands.
|
||||||
* shorthands and `this` binding.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} object The object to iterate over.
|
* @param {Object} object The object to iterate over.
|
||||||
@@ -2063,8 +2055,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.forOwnRight` without support for callback
|
* The base implementation of `_.forOwnRight` without support for callback shorthands.
|
||||||
* shorthands and `this` binding.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} object The object to iterate over.
|
* @param {Object} object The object to iterate over.
|
||||||
@@ -2100,8 +2091,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `get` without support for string paths
|
* The base implementation of `get` without support for string paths and default values.
|
||||||
* and default values.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} object The object to query.
|
* @param {Object} object The object to query.
|
||||||
@@ -2127,8 +2117,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.isEqual` without support for `this` binding
|
* The base implementation of `_.isEqual` which supports partial comparisons
|
||||||
* `customizer` functions.
|
* and tracks traversed objects.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {*} value The value to compare.
|
* @param {*} value The value to compare.
|
||||||
@@ -2228,8 +2218,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.isMatch` without support for callback
|
* The base implementation of `_.isMatch` without support for callback shorthands.
|
||||||
* shorthands and `this` binding.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} object The object to inspect.
|
* @param {Object} object The object to inspect.
|
||||||
@@ -2276,8 +2265,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.map` without support for callback shorthands
|
* The base implementation of `_.map` without support for callback shorthands.
|
||||||
* and `this` binding.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array|Object|string} collection The collection to iterate over.
|
* @param {Array|Object|string} collection The collection to iterate over.
|
||||||
@@ -2462,8 +2450,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.random` without support for argument juggling
|
* The base implementation of `_.random` without support for returning
|
||||||
* and returning floating-point numbers.
|
* floating-point numbers.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {number} min The minimum possible value.
|
* @param {number} min The minimum possible value.
|
||||||
@@ -2476,8 +2464,8 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.reduce` and `_.reduceRight` without support
|
* The base implementation of `_.reduce` and `_.reduceRight` without support
|
||||||
* for callback shorthands and `this` binding, which iterates over `collection`
|
* for callback shorthands, which iterates over `collection` using the provided
|
||||||
* using the provided `eachFunc`.
|
* `eachFunc`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array|Object|string} collection The collection to iterate over.
|
* @param {Array|Object|string} collection The collection to iterate over.
|
||||||
@@ -2541,8 +2529,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.some` without support for callback shorthands
|
* The base implementation of `_.some` without support for callback shorthands.
|
||||||
* and `this` binding.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array|Object|string} collection The collection to iterate over.
|
* @param {Array|Object|string} collection The collection to iterate over.
|
||||||
@@ -2609,8 +2596,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.uniq` without support for callback shorthands
|
* The base implementation of `_.uniq` and `_.uniqBy` without support for
|
||||||
* and `this` binding.
|
* callback shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to inspect.
|
* @param {Array} array The array to inspect.
|
||||||
@@ -2683,7 +2670,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.dropRightWhile`, `_.dropWhile`, `_.takeRightWhile`,
|
* The base implementation of `_.dropRightWhile`, `_.dropWhile`, `_.takeRightWhile`,
|
||||||
* and `_.takeWhile` without support for callback shorthands and `this` binding.
|
* and `_.takeWhile` without support for callback shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to query.
|
* @param {Array} array The array to query.
|
||||||
|
|||||||
Reference in New Issue
Block a user