We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 969defa commit 674cbf8Copy full SHA for 674cbf8
test/fixtures/cluster-preload-test.js
@@ -2,6 +2,6 @@ var cluster = require('cluster');
2
if (cluster.isMaster) {
3
cluster.fork(); // one child
4
cluster.on('exit', function(worker, code, signal) {
5
- console.log('worker terminated with code ' + code);
+ console.log(`worker terminated with code ${code}`);
6
});
7
}
0 commit comments