New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

chalk-log

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chalk-log - npm Package Compare versions

Comparing version 1.0.6 to 1.1.0

9

index.js

@@ -22,3 +22,12 @@ var chalk = require('chalk');

console.log(chalk.black.bgGreen(' '+str+' '));
},
clear : function(num){
if(!num) num = 1;
for(var i=1;i<num;i++){
process.stdout.clearLine();
process.stdout.cursorTo(0);
process.stdout.moveCursor(0,-1);
process.stdout.clearLine();
}
}
}

2

package.json
{
"name": "chalk-log",
"version": "1.0.6",
"version": "1.1.0",
"description": "console logging witk chalk",

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

@@ -22,3 +22,9 @@ ##chalk-log

// clear 1 line
log.clear();
// clear 3 line
log.clear(3);
```
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