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

humbug

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

humbug - npm Package Compare versions

Comparing version 0.0.0 to 0.0.1

test/multi.js

11

index.js

@@ -50,7 +50,14 @@ module.exports = '(' + function () {

output : output,
eval : evaluator
eval : function (s, _, _, cb) {
try {
evaluator(s, cb)
}
catch (err) {
cb(err);
}
}
});
return duplex;
})(function (s, _, _, cb) { cb(eval(s)) });
})(function (s, cb) { cb(eval(s)) });
} + ')()';

2

package.json
{
"name" : "humbug",
"version" : "0.0.0",
"version" : "0.0.1",
"description" : "debug inline state with a streaming repl",

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