Skip to content

Commit b13aea5

Browse files
benjamingraduh95
authored andcommitted
http, readline: replace sort with toSorted
PR-URL: #53623 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Tim Perry <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 0f95ad3 commit b13aea5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/internal/readline/utils.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
'use strict';
22

33
const {
4-
ArrayPrototypeSlice,
5-
ArrayPrototypeSort,
4+
ArrayPrototypeToSorted,
65
RegExpPrototypeExec,
76
StringFromCharCode,
87
StringPrototypeCharCodeAt,
@@ -385,7 +384,7 @@ function commonPrefix(strings) {
385384
if (strings.length === 1) {
386385
return strings[0];
387386
}
388-
const sorted = ArrayPrototypeSort(ArrayPrototypeSlice(strings));
387+
const sorted = ArrayPrototypeToSorted(strings);
389388
const min = sorted[0];
390389
const max = sorted[sorted.length - 1];
391390
for (let i = 0; i < min.length; i++) {

typings/primordials.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ declare namespace primordials {
128128
export const ArrayPrototypeSlice: UncurryThis<typeof Array.prototype.slice>
129129
export const ArrayPrototypeSort: UncurryThis<typeof Array.prototype.sort>
130130
export const ArrayPrototypeSplice: UncurryThis<typeof Array.prototype.splice>
131+
export const ArrayPrototypeToSorted: UncurryThis<typeof Array.prototype.toSorted>
131132
export const ArrayPrototypeIncludes: UncurryThis<typeof Array.prototype.includes>
132133
export const ArrayPrototypeIndexOf: UncurryThis<typeof Array.prototype.indexOf>
133134
export const ArrayPrototypeJoin: UncurryThis<typeof Array.prototype.join>

0 commit comments

Comments
 (0)