mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
* Fixes #3512 * Fix `clearTimeout` and `clearInterval` not cancelling jobs same-tick --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
6 lines
79 B
JavaScript
Generated
6 lines
79 B
JavaScript
Generated
setTimeout(() => {
|
|
console.log("TEST FAILED!");
|
|
}, 100)
|
|
.ref()
|
|
.unref();
|