diff options
author | Linus Groh <mail@linusgroh.de> | 2021-07-09 12:20:11 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-07-09 13:20:51 +0100 |
commit | ca71d99c66bbc021ea0e28cd2967ba90b32659d1 (patch) | |
tree | 20a4216b371eb633e0e51d7d591d2be54c508d48 /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | 5872357b56ee239922004b820a215f7b77ca9e3b (diff) | |
download | serenity-ca71d99c66bbc021ea0e28cd2967ba90b32659d1.zip |
LibJS: Implement Temporal.Instant.fromEpochNanoseconds()
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 aaf297bf12..8b7a96a906 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -145,6 +145,7 @@ namespace JS { P(fromEntries) \ P(fromEpochMicroseconds) \ P(fromEpochMilliseconds) \ + P(fromEpochNanoseconds) \ P(fromEpochSeconds) \ P(fround) \ P(gc) \ |