autoformat more files

This commit is contained in:
Zeke Sikelianos 2016-03-25 13:03:49 -07:00 committed by Kevin Sawicki
parent 06b556c34c
commit f35f362272
47 changed files with 4458 additions and 4459 deletions

View file

@ -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)
})