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 5ac59cd commit 07a24fbCopy full SHA for 07a24fb
1 file changed
js/logo.js
@@ -316,8 +316,8 @@ class Logo {
316
} else {
317
// Node.js / Jest environment — require the module
318
try {
319
- const { ManagedTimer: MT } = require("./utils/ManagedTimer");
320
- this._timerManager = new MT();
+ const ManagedTimerCtor = require("./utils/ManagedTimer");
+ this._timerManager = new ManagedTimerCtor();
321
} catch (e) {
322
// Fallback: create a minimal shim so the engine still works
323
this._timerManager = {
0 commit comments