Socket
Socket
Sign inDemoInstall

ora

Package Overview
Dependencies
24
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.1.0 to 6.1.1

2

package.json
{
"name": "ora",
"version": "6.1.0",
"version": "6.1.1",
"description": "Elegant terminal spinner",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -82,5 +82,15 @@ 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;
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc