Skip to content

Commit

Permalink
perf: improve the performance of getNow (#5944)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangenming committed May 23, 2022
1 parent 0cd21ba commit 3bdc41d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/runtime-dom/src/modules/events.ts
Expand Up @@ -25,7 +25,7 @@ const [_getNow, skipTimestampCheck] = /*#__PURE__*/ (() => {
// if the low-res timestamp which is bigger than the event timestamp
// (which is evaluated AFTER) it means the event is using a hi-res timestamp,
// and we need to use the hi-res version for event listeners as well.
_getNow = () => performance.now()
_getNow = performance.now.bind(performance)
}
// #3485: Firefox <= 53 has incorrect Event.timeStamp implementation
// and does not fire microtasks in between event propagation, so safe to exclude.
Expand Down

0 comments on commit 3bdc41d

Please sign in to comment.