diff options
author | Linus Groh <mail@linusgroh.de> | 2022-06-13 07:59:19 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-13 20:26:54 +0100 |
commit | ce17c868c0a75cb765f0db81a60464e01f37aeb9 (patch) | |
tree | 25241a1785c70abac68e1dbcd279d74e1721642f /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | e4370b7d82ace4bd8d3a954c3d3e68c3eebb2c5f (diff) | |
download | serenity-ce17c868c0a75cb765f0db81a60464e01f37aeb9.zip |
LibJS: Implement Array.prototype.toSorted()
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h index 2c3f324879..9d2121236d 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -486,6 +486,7 @@ namespace JS { P(toPlainYearMonth) \ P(toPrecision) \ P(toReversed) \ + P(toSorted) \ P(toString) \ P(total) \ P(toTemporalInstant) \ |