Comparing version 6.1.1 to 6.1.2
{ | ||
"name": "ora", | ||
"version": "6.1.1", | ||
"version": "6.1.2", | ||
"description": "Elegant terminal spinner", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -82,15 +82,5 @@ import process from 'node:process'; | ||
const {stdin} = process; | ||
const wasPaused = stdin.isPaused(); | ||
this.#rl.close(); | ||
// Keep stdin unpaused across the readline close if it is already | ||
// unpaused. See #209 for more details. | ||
if (!wasPaused && stdin.isPaused()) { | ||
stdin.resume(); | ||
} | ||
this.#rl = undefined; | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26232
604