/
githubmirror
/
joomla-cms
Обзор
Документация
Войти
/
githubmirror
/
joomla-cms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
5.4-dev
build/build-modules-js/utils/timer.mjs
18 строк
333 B
Richard Fath
[5.4] Update npm dependencies (#45784)
04 авг 2025, 17:14
Не верифицирован
04 авг 2025, 17:14
2acc28f
Код
Авторство
О чём код?
/** * Simple timer * * @param name * @returns {{stop: stop}} */ export class Timer { constructor(name) { this.start = new Date(); this.name = name; } stop() { const end = new Date(); const time = end.getTime() - this.start.getTime(); console.log('Timer:', this.name, 'finished in', time, 'ms'); } }