diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-01-03 19:48:44 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-01-04 13:07:42 +0000 |
commit | 534b2be16fd8857f28d00ce96151ef49c737509f (patch) | |
tree | 42926c092e6a98240baddf6a2ea91db59afec848 /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | dc984c53d8b3976bd83eaa817e00025d0f62ad22 (diff) | |
download | serenity-534b2be16fd8857f28d00ce96151ef49c737509f.zip |
LibJS: Implement Number.prototype.toExponential
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 30f5e2ddf0..56aca802e0 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -452,6 +452,7 @@ namespace JS { P(timeZone) \ P(timeZoneName) \ P(toDateString) \ + P(toExponential) \ P(toFixed) \ P(toGMTString) \ P(toInstant) \ |