diff --git a/routes/_utils/marks.js b/routes/_utils/marks.js index 56147671..2108ff02 100644 --- a/routes/_utils/marks.js +++ b/routes/_utils/marks.js @@ -12,15 +12,15 @@ const enabled = thunk(() => process.browser && const perf = process.browser && performance -export function mark(name) { +export function mark (name) { if (enabled()) { perf.mark(`start ${name}`) } } -export function stop(name) { +export function stop (name) { if (enabled()) { perf.mark(`end ${name}`) perf.measure(name, `start ${name}`, `end ${name}`) } -} \ No newline at end of file +} diff --git a/routes/_utils/thunk.js b/routes/_utils/thunk.js index bd15a808..153be560 100644 --- a/routes/_utils/thunk.js +++ b/routes/_utils/thunk.js @@ -1,4 +1,4 @@ -export function thunk(fn) { +export function thunk (fn) { let value let called return () => { @@ -8,4 +8,4 @@ export function thunk(fn) { } return value } -} \ No newline at end of file +}