PR-URL: https://github.com/nodejs/node/pull/63463 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jordan Harband <ljharb@gmail.com>
10 lines
No EOL
378 B
JavaScript
10 lines
No EOL
378 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.defaultPerf = void 0;
|
|
exports.defaultPerf = (typeof performance === 'object' &&
|
|
performance &&
|
|
typeof performance.now === 'function') ?
|
|
/* c8 ignore start - this gets covered, but c8 gets confused */
|
|
performance
|
|
: /* c8 ignore stop */ Date;
|
|
//# sourceMappingURL=perf.js.map
|