Comparing version 4.3.4 to 4.3.5
{ | ||
"name": "debug", | ||
"version": "4.3.4", | ||
"version": "4.3.5", | ||
"repository": { | ||
@@ -19,3 +19,3 @@ "type": "git", | ||
], | ||
"author": "Josh Junon <josh.junon@protonmail.com>", | ||
"author": "Josh Junon (https://github.com/qix-)", | ||
"contributors": [ | ||
@@ -30,3 +30,3 @@ "TJ Holowaychuk <tj@vision-media.ca>", | ||
"test": "npm run test:node && npm run test:browser && npm run lint", | ||
"test:node": "istanbul cover _mocha -- test.js", | ||
"test:node": "istanbul cover _mocha -- test.js test.node.js", | ||
"test:browser": "karma start --single-run", | ||
@@ -49,2 +49,3 @@ "test:coverage": "cat ./coverage/lcov.info | coveralls" | ||
"mocha-lcov-reporter": "^1.2.0", | ||
"sinon": "^14.0.0", | ||
"xo": "^0.23.0" | ||
@@ -51,0 +52,0 @@ }, |
@@ -190,7 +190,7 @@ /** | ||
/** | ||
* Invokes `util.format()` with the specified arguments and writes to stderr. | ||
* Invokes `util.formatWithOptions()` with the specified arguments and writes to stderr. | ||
*/ | ||
function log(...args) { | ||
return process.stderr.write(util.format(...args) + '\n'); | ||
return process.stderr.write(util.formatWithOptions(exports.inspectOpts, ...args) + '\n'); | ||
} | ||
@@ -197,0 +197,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
42430
12