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

log-symbols

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

log-symbols - npm Package Compare versions

Comparing version 2.0.0 to 2.1.0

22

index.js
'use strict';
const os = require('os');
const chalk = require('chalk');
const isSupported = (() => {
if (process.platform !== 'win32' || process.env.CI) {
return true;
}
const isSupported = process.platform !== 'win32' || process.env.CI || process.env.VSCODE_PID;
if (process.env.ConEmuDir) {
return false;
}
// Windows 10
const osRelease = os.release().split('.');
if (
Number(osRelease[0]) >= 10 &&
Number(osRelease[2]) >= 10586
) {
return true;
}
return false;
})();
const main = {

@@ -27,0 +7,0 @@ info: chalk.blue('ℹ'),

2

package.json
{
"name": "log-symbols",
"version": "2.0.0",
"version": "2.1.0",
"description": "Colored symbols for various log levels. Example: ✔︎ Success",

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

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