/
dimamir
/
magic-string
Обзор
Документация
Войти
/
dimamir
/
magic-string
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/utils/Stats.js
18 строк
358 B
Anthony Fu
chore: run formatter
02 мар 2022, 21:10
02 мар 2022, 21:10
f223b58
Код
Авторство
О чём код?
export default class Stats { constructor() { Object.defineProperties(this, { startTimes: { value: {} }, }); } time(label) { this.startTimes[label] = process.hrtime(); } timeEnd(label) { const elapsed = process.hrtime(this.startTimes[label]); if (!this[label]) this[label] = 0; this[label] += elapsed[0] * 1e3 + elapsed[1] * 1e-6; } }