/opt/canhelp/node_modules/kysely/dist/esm/util
Edit: /opt/canhelp/node_modules/kysely/dist/esm/util/performance-now.js (295B)
///
import { isFunction } from './object-utils.js';
export function performanceNow() {
if (typeof performance !== 'undefined' && isFunction(performance.now)) {
return performance.now();
}
else {
return Date.now();
}
}