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

charm

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

charm - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

2

example/column.js

@@ -1,2 +0,2 @@

var charm = require('charm')(process);
var charm = require('../')(process);

@@ -3,0 +3,0 @@ charm

@@ -1,2 +0,2 @@

var charm = require('charm')(process);
var charm = require('../')(process);

@@ -3,0 +3,0 @@ charm.position(5, 10);

var http = require('http');
var charmer = require('charm');
var charmer = require('../');

@@ -4,0 +4,0 @@ http.createServer(function (req, res) {

@@ -1,2 +0,2 @@

var charm = require('charm')(process);
var charm = require('../')(process);
charm.reset();

@@ -3,0 +3,0 @@

@@ -1,2 +0,2 @@

var charm = require('charm')(process);
var charm = require('../')(process);

@@ -17,1 +17,4 @@ charm.write("Progress: 0 %");

var loop = setInterval(increment, 50);
charm.on('^C',process.exit);

@@ -1,2 +0,2 @@

var charm = require('charm')(process);
var charm = require('../')(process);
charm.reset();

@@ -3,0 +3,0 @@

@@ -43,3 +43,6 @@ var tty = require('tty');

if (input && typeof input.fd === 'number' && tty.isatty(input.fd)) {
tty.setRawMode(true);
if (process.stdin.setRawMode) {
process.stdin.setRawMode(true);
}
else tty.setRawMode(true);
input.resume();

@@ -46,0 +49,0 @@ }

{
"name" : "charm",
"version" : "0.0.6",
"version" : "0.0.7",
"description" : "ansi control sequences for terminal cursor hopping and colors",

@@ -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