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

asynctrace

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asynctrace - npm Package Compare versions

Comparing version 1.4.1 to 1.5.0

0

lib/adapters/index.js

@@ -0,0 +0,0 @@ 'use strict';

@@ -0,0 +0,0 @@ 'use strict';

4

lib/asynctrace.js

@@ -20,6 +20,5 @@ 'use strict';

var settings = {
// `null`ing a style will remove it from the trace output
tracingStyle: "\x1B[1;37m",
//tracingStyle: "\x1B[1;37m",
modulesStyle: "\x1B[32m",

@@ -141,2 +140,3 @@ globalsStyle: "\x1B[95m",

}
if (!~line.indexOf("(")) line = "<anonymous> (" + line + ")";
return frame._prefix + line + frame._suffix;

@@ -143,0 +143,0 @@ }

{
"author": "Refael Ackerkmann <refael@empeeric.com>",
"bundledDependencies": [
"async-listener"
],
"author": "Refael Ackerkmann <me@refack.com>",
"dependencies": {
"async-listener": "> 0.5.0",
"shimmer": "latest"

@@ -15,8 +13,2 @@ },

},
"engineStrict": {
"node": ">= 0.10.0"
},
"engines": {
"node": "^0.11.12"
},
"jshintConfig": {

@@ -37,2 +29,3 @@ "globals": {

"keywords": [
"async-listner",
"trace",

@@ -47,3 +40,3 @@ "deep-stack-trace",

"name": "asynctrace",
"repository": "Empeeric/asynctrace",
"repository": "TheNodeILs/asynctrace",
"scripts": {

@@ -53,3 +46,3 @@ "test": "mocha --require .",

},
"version": "1.4.1"
"version": "1.5.0"
}

@@ -5,6 +5,5 @@ 'use strict';

function writeSync(str) {
var buffer = new Buffer(str, 'utf8');
fs.writeSync(process.stdout.fd, buffer, 0, buffer.length, null);
fs.writeSync(fd, buffer, 0, buffer.length, null);
console._stdout.write(str);
fs.write(fd, str);
}
global.log = writeSync;

Sorry, the diff of this file is not supported yet

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