mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-13 12:27:49 +00:00
Cleanup comments. [ci skip]
This commit is contained in:
45
lodash.js
45
lodash.js
@@ -608,7 +608,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* An implementation of `_.uniq` optimized for sorted arrays without support
|
* An implementation of `_.uniq` optimized for sorted arrays without support
|
||||||
* for callback shorthands and `this` binding.
|
* for callback shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to inspect.
|
* @param {Array} array The array to inspect.
|
||||||
@@ -1270,8 +1270,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A specialized version of `_.forEach` for arrays without support for callback
|
* A specialized version of `_.forEach` for arrays without support for
|
||||||
* shorthands and `this` binding.
|
* callback shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} array The array to iterate over.
|
||||||
@@ -1292,7 +1292,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A specialized version of `_.forEachRight` for arrays without support for
|
* A specialized version of `_.forEachRight` for arrays without support for
|
||||||
* callback shorthands and `this` binding.
|
* callback shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} array The array to iterate over.
|
||||||
@@ -1311,8 +1311,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A specialized version of `_.every` for arrays without support for callback
|
* A specialized version of `_.every` for arrays without support for
|
||||||
* shorthands and `this` binding.
|
* callback shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} array The array to iterate over.
|
||||||
@@ -1368,8 +1368,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A specialized version of `_.filter` for arrays without support for callback
|
* A specialized version of `_.filter` for arrays without support for
|
||||||
* shorthands and `this` binding.
|
* callback shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} array The array to iterate over.
|
||||||
@@ -1393,7 +1393,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A specialized version of `_.map` for arrays without support for callback
|
* A specialized version of `_.map` for arrays without support for callback
|
||||||
* shorthands and `this` binding.
|
* shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} array The array to iterate over.
|
||||||
@@ -1431,8 +1431,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A specialized version of `_.reduce` for arrays without support for callback
|
* A specialized version of `_.reduce` for arrays without support for
|
||||||
* shorthands and `this` binding.
|
* callback shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} array The array to iterate over.
|
||||||
@@ -1456,7 +1456,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A specialized version of `_.reduceRight` for arrays without support for
|
* A specialized version of `_.reduceRight` for arrays without support for
|
||||||
* callback shorthands and `this` binding.
|
* callback shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} array The array to iterate over.
|
||||||
@@ -1478,7 +1478,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A specialized version of `_.some` for arrays without support for callback
|
* A specialized version of `_.some` for arrays without support for callback
|
||||||
* shorthands and `this` binding.
|
* shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} array The array to iterate over.
|
||||||
@@ -1499,7 +1499,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A specialized version of `_.sum` for arrays without support for callback
|
* A specialized version of `_.sum` for arrays without support for callback
|
||||||
* shorthands and `this` binding..
|
* shorthands.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to iterate over.
|
* @param {Array} array The array to iterate over.
|
||||||
@@ -1519,7 +1519,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.assign` without support for multiple sources
|
* The base implementation of `_.assign` without support for multiple sources
|
||||||
* and `customizer` functions.
|
* or `customizer` functions.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} object The destination object.
|
* @param {Object} object The destination object.
|
||||||
@@ -1790,9 +1790,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.find`, `_.findLast`, `_.findKey`, and `_.findLastKey`,
|
* The base implementation of methods like `_.find` and `_.findKey` without
|
||||||
* without support for callback shorthands, which iterates over `collection`
|
* support for callback shorthands, which iterates over `collection` using
|
||||||
* using the provided `eachFunc`.
|
* the provided `eachFunc`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array|Object} collection The collection to search.
|
* @param {Array|Object} collection The collection to search.
|
||||||
@@ -2332,7 +2332,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.pick` without support for individual property names.
|
* The base implementation of `_.pick` without support for individual
|
||||||
|
* property names.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Object} object The source object.
|
* @param {Object} object The source object.
|
||||||
@@ -2403,7 +2404,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.pullAt` without support for individual
|
* The base implementation of `_.pullAt` without support for individual
|
||||||
* index arguments and capturing the removed elements.
|
* index arguments or capturing the removed elements.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to modify.
|
* @param {Array} array The array to modify.
|
||||||
@@ -2657,8 +2658,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.dropRightWhile`, `_.dropWhile`, `_.takeRightWhile`,
|
* The base implementation of methods like `_.dropWhile` and `_.takeWhile`
|
||||||
* and `_.takeWhile` without support for callback shorthands.
|
* 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