@metamask/multichain-account-service
Version:
Service to manage multichain accounts
14 lines • 531 B
JavaScript
;
/* istanbul ignore file */ // We use this file mainly to ease testing of performance logging, so we don't need to cover it with tests.
Object.defineProperty(exports, "__esModule", { value: true });
exports.now = void 0;
/**
* Returns the current high-resolution timestamp in milliseconds. This is a thin wrapper around `performance.now()`.
*
* @returns The current high-resolution timestamp in milliseconds.
*/
function now() {
return performance.now();
}
exports.now = now;
//# sourceMappingURL=timer.cjs.map