mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-09 07:29:24 +08:00
8 lines
282 B
TypeScript
8 lines
282 B
TypeScript
export async function measureExecutionTime(operation, operationName) {
|
|
const startTime = Date.now();
|
|
await operation();
|
|
const endTime = Date.now();
|
|
const duration = (endTime - startTime).toFixed(0);
|
|
console.log(`${operationName} completed in ${duration} milliseconds`);
|
|
}
|