autoformat more files
This commit is contained in:
parent
06b556c34c
commit
f35f362272
47 changed files with 4458 additions and 4459 deletions
24
spec/fixtures/module/fork_ping.js
vendored
24
spec/fixtures/module/fork_ping.js
vendored
|
@ -1,14 +1,14 @@
|
|||
process.on('uncaughtException', function(error) {
|
||||
process.send(error.stack);
|
||||
});
|
||||
process.on('uncaughtException', function (error) {
|
||||
process.send(error.stack)
|
||||
})
|
||||
|
||||
var child = require('child_process').fork(__dirname + '/ping.js');
|
||||
process.on('message', function(msg) {
|
||||
child.send(msg);
|
||||
});
|
||||
var child = require('child_process').fork(__dirname + '/ping.js')
|
||||
process.on('message', function (msg) {
|
||||
child.send(msg)
|
||||
})
|
||||
child.on('message', function (msg) {
|
||||
process.send(msg);
|
||||
});
|
||||
child.on('exit', function(code) {
|
||||
process.exit(code);
|
||||
});
|
||||
process.send(msg)
|
||||
})
|
||||
child.on('exit', function (code) {
|
||||
process.exit(code)
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue