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 0726fda commit 7085776Copy full SHA for 7085776
example/stress/decorate.ts
@@ -27,5 +27,5 @@ Bun.gc(true)
27
28
const memoryAfter = process.memoryUsage().heapTotal / 1024 / 1024
29
console.log(+(memoryAfter - memory).toFixed(2), 'MB memory used')
30
-console.log(+(t2 - t1).toFixed(2), 'ms')
31
-console.log(+(t2 - t1 / total * sub).toFixed(2), 'ms')
+console.log('total', +(t2 - t1).toFixed(2), 'ms')
+console.log(+((t2 - t1) / (total * sub)).toFixed(6), 'decoration/ms')
0 commit comments