From 2ef25b63382f4ad31434a2cff3b4f3eb4bfa43d7 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 12 Dec 2014 22:49:08 -0800 Subject: [PATCH] Cleanup `baseBinaryIndex` and `_.pull`. [ci skip] --- lodash.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lodash.js b/lodash.js index 947eba459..d8a6d8d02 100644 --- a/lodash.js +++ b/lodash.js @@ -1714,9 +1714,9 @@ } /** - * The base implementation of `binaryIndex` which supports large arrays and - * determining the insert index for `NaN` and `undefined`. Unlike `binaryIndex`, - * this function does not invoke `iteratee` for `value`. + * The base implementation of `binaryIndex`, without support for invoking + * `iteratee` for `value`, which supports large arrays and determining the + * insert index for `NaN` and `undefined`. * * @private * @param {Array} array The sorted array to inspect. @@ -4365,9 +4365,8 @@ * * **Notes:** * - Unlike `_.without`, this method mutates `array`. - * - `SameValueZero` comparisons are like strict equality comparisons, - * e.g. `===`, except that `NaN` matches `NaN`. See the - * [ES6 spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero) + * - `SameValueZero` comparisons are like strict equality comparisons, e.g. `===`, + * except that `NaN` matches `NaN`. See the [ES6 spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero) * for more details. * * @static