We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
per_thread.js
1 parent e112fb4 commit 4a07a62Copy full SHA for 4a07a62
lib/internal/process/per_thread.js
@@ -15,7 +15,7 @@ const {
15
ERR_UNKNOWN_SIGNAL
16
}
17
} = require('internal/errors');
18
-const util = require('util');
+const format = require('internal/util/inspect').format;
19
const constants = internalBinding('constants').os.signals;
20
21
function assert(x, msg) {
@@ -32,7 +32,7 @@ function wrapProcessMethods(binding) {
32
} = binding;
33
34
function _rawDebug(...args) {
35
- binding._rawDebug(util.format.apply(null, args));
+ binding._rawDebug(format.apply(null, args));
36
37
38
// Create the argument array that will be passed to the native function.
0 commit comments