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.2.3 to 1.2.4

10

asynctrace.js

@@ -10,3 +10,8 @@ 'use strict';

}
var util = require('util');
try {
var util = require('util');
var debug = util.debuglog('asynctrace');
} catch (e) {
debug = console.error.bind(console);
}
var PATH_PREFIX = process.cwd().toLowerCase();

@@ -154,2 +159,3 @@ var sep = require('path').sep;

.pop();
if (!mocha) return;
var shimmer = require('shimmer');

@@ -166,5 +172,5 @@ shimmer.wrap(mocha.prototype, 'run', function (original) {

} catch (e) {
if (e.code !== 'MODULE_NOT_FOUND') console.error(e);
if (e.code !== 'MODULE_NOT_FOUND') debug(e.stack);
}
}
if (settings.mocha) setupForMocha();

2

package.json

@@ -50,3 +50,3 @@ {

},
"version": "1.2.3"
"version": "1.2.4"
}
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