mirror of
https://github.com/electron/electron.git
synced 2026-02-19 03:14:51 -05:00
7 lines
185 B
JavaScript
7 lines
185 B
JavaScript
process.on('message', function () {
|
|
process.send(process.argv);
|
|
});
|
|
|
|
// Allow time to send args, then crash the app.
|
|
setTimeout(() => process.nextTick(() => process.crash()), 10000);
|