1
0
mirror of https://github.com/ascribe/onion.git synced 2025-01-21 02:01:56 +01:00
onion/js/utils/timer_utils.js

16 lines
250 B
JavaScript
Raw Normal View History

'use strict'
var startTime = null;
export function startTimer() {
startTime = new Date();
};
export function endTimer() {
if (startTime) {
const time = new Date() - startTime;
startTime = null;
return time;
}
}