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

ansi-colors

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

ansi-colors - npm Package Compare versions

Comparing version 4.1.0 to 4.1.1

4

package.json
{
"name": "ansi-colors",
"description": "Easily add ANSI colors to your text and symbols in the terminal. A faster drop-in replacement for chalk, kleur and turbocolor (without the dependencies and rendering bugs).",
"version": "4.1.0",
"version": "4.1.1",
"homepage": "https://github.com/doowb/ansi-colors",

@@ -109,2 +109,2 @@ "author": "Brian Woodward (https://github.com/doowb)",

}
}
}

@@ -35,4 +35,3 @@ 'use strict';

const windows = {
...common,
const windows = Object.assign({}, common, {
check: '√',

@@ -50,6 +49,5 @@ cross: '×',

warning: '‼'
};
});
const other = {
...common,
const other = Object.assign({}, common, {
ballotCross: '✘',

@@ -69,3 +67,3 @@ check: '✔',

warning: '⚠'
};
});

@@ -72,0 +70,0 @@ module.exports = (isWindows && !isHyper) ? windows : other;

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