diff --git a/parseInt.js b/parseInt.js index 6e1cb794a..b8975ccb5 100644 --- a/parseInt.js +++ b/parseInt.js @@ -23,9 +23,6 @@ const nativeParseInt = root.parseInt * * parseInt('08') * // => 8 - * - * map(['6', '08', '10'], parseInt) - * // => [6, 8, 10] */ function parseInt(string, radix) { if (radix == null) { diff --git a/trim.js b/trim.js index 82bc6cd55..c79ead74c 100644 --- a/trim.js +++ b/trim.js @@ -19,9 +19,6 @@ import stringToArray from './.internal/stringToArray.js' * * trim('-_-abc-_-', '_-') * // => 'abc' - * - * map([' foo ', ' bar '], trim) - * // => ['foo', 'bar'] */ function trim(string, chars) { if (string && chars === undefined) {