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

@listenai/cskburn

Package Overview
Dependencies
Maintainers
2
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@listenai/cskburn - npm Package Compare versions

Comparing version 1.7.0 to 1.8.0

cskburn-darwin-x64

19

index.js

@@ -1,14 +0,13 @@

const { platform } = require('os');
const { join } = require('path');
const { existsSync } = require('fs');
const { arch, platform } = process;
exports.CSKBURN = (() => {
switch (platform()) {
case 'darwin':
return join(__dirname, 'cskburn-darwin');
case 'linux':
return join(__dirname, 'cskburn-linux');
case 'win32':
return join(__dirname, 'cskburn-win32.exe');
default:
return null;
const suffix = (platform == 'win32') ? '.exe' : '';
const binary = join(__dirname, `cskburn-${platform}-${arch}${suffix}`);
if (existsSync(binary)) {
return binary;
} else {
return null;
}
})();
{
"name": "@listenai/cskburn",
"version": "1.7.0",
"version": "1.8.0",
"description": "Burn tool for CSK300X/400X series",

@@ -5,0 +5,0 @@ "main": "index.js",

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