remove obsolete semicolons

This commit is contained in:
Zutatensuppe 2021-04-15 10:40:12 +02:00
parent 20ac3d6342
commit 23e3ce4a1d

View file

@ -11,12 +11,12 @@ const checkpoint_start = (mindiff) => {
}
const checkpoint = (label) => {
const now = performance.now();
const now = performance.now()
const diff = now - _pt
if (diff > _mindiff) {
log.log(label + ': ' + (diff));
log.log(label + ': ' + (diff))
}
_pt = now;
_pt = now
}
export default {