electron/spec/fixtures/module/check-arguments.js

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

5 lines
122 B
JavaScript
Raw Normal View History

const { ipcRenderer } = require('electron');
window.onload = function () {
ipcRenderer.send('answer', process.argv);
};