You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
640 B
24 lines
640 B
1 year ago
|
let supported;
|
||
|
let perf;
|
||
|
export function isPerformanceSupported() {
|
||
|
var _a;
|
||
|
if (supported !== undefined) {
|
||
|
return supported;
|
||
|
}
|
||
|
if (typeof window !== 'undefined' && window.performance) {
|
||
|
supported = true;
|
||
|
perf = window.performance;
|
||
|
}
|
||
|
else if (typeof global !== 'undefined' && ((_a = global.perf_hooks) === null || _a === void 0 ? void 0 : _a.performance)) {
|
||
|
supported = true;
|
||
|
perf = global.perf_hooks.performance;
|
||
|
}
|
||
|
else {
|
||
|
supported = false;
|
||
|
}
|
||
|
return supported;
|
||
|
}
|
||
|
export function now() {
|
||
|
return isPerformanceSupported() ? perf.now() : Date.now();
|
||
|
}
|