You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the "nanoseconds" in Temporal.Now.* are faked, since the current time is obtained from Date.now(). This was carried over from the Temporal proposal's reference polyfill. Since this polyfill is intended for production, we should remove the fake nanoseconds. There's probably some rollup transform that will give us process.hrtime in Node and a lower-precision equivalent in the browser.
The text was updated successfully, but these errors were encountered:
Follow-up from #162 (comment)
Currently the "nanoseconds" in
Temporal.Now.*
are faked, since the current time is obtained fromDate.now()
. This was carried over from the Temporal proposal's reference polyfill. Since this polyfill is intended for production, we should remove the fake nanoseconds. There's probably some rollup transform that will give usprocess.hrtime
in Node and a lower-precision equivalent in the browser.The text was updated successfully, but these errors were encountered: