electron/spec/fixtures/module/ping.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
83 B
JavaScript
Raw Normal View History

2016-03-25 20:03:49 +00:00
process.on('message', function (msg) {
process.send(msg);
process.exit(0);
});