Skip to content

Commit 4edaf77

Browse files
committed
WIP
1 parent cf719a9 commit 4edaf77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/svelte/src/internal/client/dev/tracing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export function trace(fn, label, computed) {
8787
if (computed) {
8888
var start = performance.now();
8989
value = fn();
90-
time = (performance.now() - start);
90+
time = performance.now() - start;
9191
} else {
9292
value = fn();
9393
}

0 commit comments

Comments
 (0)