remove obsolete semicolons
This commit is contained in:
parent
20ac3d6342
commit
23e3ce4a1d
1 changed files with 3 additions and 3 deletions
|
|
@ -11,12 +11,12 @@ const checkpoint_start = (mindiff) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const checkpoint = (label) => {
|
const checkpoint = (label) => {
|
||||||
const now = performance.now();
|
const now = performance.now()
|
||||||
const diff = now - _pt
|
const diff = now - _pt
|
||||||
if (diff > _mindiff) {
|
if (diff > _mindiff) {
|
||||||
log.log(label + ': ' + (diff));
|
log.log(label + ': ' + (diff))
|
||||||
}
|
}
|
||||||
_pt = now;
|
_pt = now
|
||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue