From b821660e799a2701d0a1b0a62e56a732e75791a9 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 14 Jul 2015 23:12:31 -0700 Subject: [PATCH] Remove irrelevant comments. [ci skip] --- lodash.src.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index cbc7dfe98..b2ab5c795 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -4941,8 +4941,8 @@ /** * Creates a slice of `array` from `start` up to, but not including, `end`. * - * **Note:** This method is used instead of `Array#slice` to support node - * lists in IE < 9 and to ensure dense arrays are returned. + * **Note:** This method is used instead of `Array#slice` to ensure dense + * arrays are returned. * * @static * @memberOf _ @@ -9799,7 +9799,6 @@ * // => 'fred, barney, & pebbles' */ function escape(string) { - // Reset `lastIndex` because in IE < 9 `String#replace` does not. string = baseToString(string); return (string && reHasUnescapedHtml.test(string)) ? string.replace(reUnescapedHtml, escapeHtmlChar)