plugin integration round 2
This commit is contained in:
parent
a757521313
commit
ad6ce0d73f
29 changed files with 3863 additions and 100 deletions
19
quartz/perf.ts
Normal file
19
quartz/perf.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
import chalk from 'chalk'
|
||||
import pretty from 'pretty-time'
|
||||
|
||||
export class PerfTimer {
|
||||
evts: { [key: string]: [number, number] }
|
||||
|
||||
constructor() {
|
||||
this.evts = {}
|
||||
this.addEvent('start')
|
||||
}
|
||||
|
||||
addEvent(evtName: string) {
|
||||
this.evts[evtName] = process.hrtime()
|
||||
}
|
||||
|
||||
timeSince(evtName?: string): string {
|
||||
return chalk.yellow(pretty(process.hrtime(this.evts[evtName ?? 'start'])))
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue