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

systeminformation

Package Overview
Dependencies
Maintainers
1
Versions
653
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

systeminformation - npm Package Compare versions

Comparing version 2.0.3 to 2.0.4

9

lib/index.js

@@ -70,3 +70,4 @@ // ==================================================================================

// version date comment
// 2.0.2 2016-02-22 optimized cpuCurrentspeed
// 2.0.4 2016-02-22 tiny correction - removed double quotes CPU brand, ...
// 2.0.3 2016-02-22 optimized cpuCurrentspeed
// 2.0.2 2016-02-22 added CoreOS identification

@@ -319,6 +320,6 @@ // 2.0.1 2016-01-07 minor patch

});
result.distro = release.DISTRIB_ID || release.NAME || 'unknown';
result.distro = (release.DISTRIB_ID || release.NAME || 'unknown').replace(/"/g, '');
result.logofile = getLogoFile(result.distro);
result.release = release.DISTRIB_RELEASE || release.VERSION_ID || 'unknown';
result.codename = release.DISTRIB_CODENAME || '';
result.release = (release.DISTRIB_RELEASE || release.VERSION_ID || 'unknown').replace(/"/g, '');
result.codename = (release.DISTRIB_CODENAME || '').replace(/"/g, '');
}

@@ -325,0 +326,0 @@ callback(result);

{
"name": "systeminformation",
"version": "2.0.3",
"version": "2.0.4",
"description": "Simple system and OS information library",

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

@@ -232,2 +232,3 @@ # systeminformation

| -------------- | -------------- | -------- |
| 2.0.4 | 2016-02-22 | tiny correction - removed double quotes CPU brand, ... |
| 2.0.3 | 2016-02-22 | optimized cpuCurrentspeed |

@@ -234,0 +235,0 @@ | 2.0.2 | 2016-02-22 | added CoreOS identification |

Sorry, the diff of this file is not supported yet

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