From e2df0e0dbc224cf8915e30b4906b832e36a6840a Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Tue, 12 Nov 2024 06:50:35 +0000 Subject: [PATCH] docs: Remove Node.js 10 notice (#10593) docs: remove Node.js 10 notice --- packages/collection/src/collection.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/collection/src/collection.ts b/packages/collection/src/collection.ts index 8f842ef68ad6..2b4868a5fb10 100644 --- a/packages/collection/src/collection.ts +++ b/packages/collection/src/collection.ts @@ -831,7 +831,6 @@ export class Collection extends Map { /** * The sort method sorts the items of a collection in place and returns it. - * The sort is not necessarily stable in Node 10 or older. * The default sort order is according to string Unicode code points. * * @param compareFunction - Specifies a function that defines the sort order. @@ -1026,7 +1025,6 @@ export class Collection extends Map { /** * The sorted method sorts the items of a collection and returns it. - * The sort is not necessarily stable in Node 10 or older. * The default sort order is according to string Unicode code points. * * @param compareFunction - Specifies a function that defines the sort order.