diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-06-16 17:30:41 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-06-16 20:05:18 +0100 |
commit | 8e05b49089546d96f7fd02ff5c49d327295b88b5 (patch) | |
tree | ad4ed1698333d55a92b5d2ad674678f599720495 /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | 9f71e3cab4a3250226135fa55f294339086625bf (diff) | |
download | serenity-8e05b49089546d96f7fd02ff5c49d327295b88b5.zip |
LibJS: Add the String.prototype.codePointAt() method
This commit also brings charAt & charCodeAt closer to the specification
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 1c97d1c43c..445f3e120d 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -78,6 +78,7 @@ namespace JS { P(cleanupSome) \ P(clear) \ P(clz32) \ + P(codePointAt) \ P(concat) \ P(configurable) \ P(console) \ |