We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf719a9 commit 4edaf77Copy full SHA for 4edaf77
packages/svelte/src/internal/client/dev/tracing.js
@@ -87,7 +87,7 @@ export function trace(fn, label, computed) {
87
if (computed) {
88
var start = performance.now();
89
value = fn();
90
- time = (performance.now() - start);
+ time = performance.now() - start;
91
} else {
92
93
}
0 commit comments