Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@hyrious/blivec

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hyrious/blivec - npm Package Compare versions

Comparing version 0.3.5 to 0.3.6

15

dist/bin.js

@@ -334,3 +334,18 @@ #!/usr/bin/env node

}
} else {
console.log(help);
}
} else {
const id = Number.parseInt(arg1);
const json = arg2 === "--json";
if (Number.isSafeInteger(id) && id > 0) {
if (arg2 && !json) {
await send(id, arg2);
} else {
const con = listen(id, { json });
sigint(con, { json });
}
} else {
console.log(help);
}
}

2

package.json
{
"name": "@hyrious/blivec",
"version": "0.3.5",
"version": "0.3.6",
"description": "bilibili live cli",

@@ -5,0 +5,0 @@ "type": "module",

@@ -360,3 +360,18 @@ #!/usr/bin/env node

}
} else {
console.log(help);
}
} else {
const id = Number.parseInt(arg1);
const json = arg2 === "--json";
if (Number.isSafeInteger(id) && id > 0) {
if (arg2 && !json) {
await send(id, arg2);
} else {
const con = listen(id, { json });
sigint(con, { json });
}
} else {
console.log(help);
}
}
SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc