command-cmd 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cmd.js +0 -4
- package/package.json +1 -1
package/cmd.js
CHANGED
|
@@ -370,10 +370,6 @@ export async function maper(enabled) {
|
|
|
370
370
|
pollPosition();
|
|
371
371
|
maperInterval = setInterval(pollPosition, MAPER_POLL_INTERVAL);
|
|
372
372
|
|
|
373
|
-
if (typeof maperInterval.unref === 'function') {
|
|
374
|
-
maperInterval.unref();
|
|
375
|
-
}
|
|
376
|
-
|
|
377
373
|
return { active: true, pollInterval: MAPER_POLL_INTERVAL };
|
|
378
374
|
}
|
|
379
375
|
|