4 lines
79 B
JavaScript
4 lines
79 B
JavaScript
setTimeout(() => {
|
|
console.log("GC Triggered");
|
|
SpecialPowers.gc();
|
|
}, 0);
|