1 2 3 4 5 6 7
setTimeout(() => { setTimeout(() => {}, 999_999); }, 100).unref(); setTimeout(() => { // this one should always run }, 1);