electron/spec/fixtures/module/send-later.js

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

5 lines
153 B
JavaScript
Raw Normal View History

const { ipcRenderer } = require('electron');
2016-03-25 20:03:49 +00:00
window.onload = function () {
2017-02-06 21:54:41 +00:00
ipcRenderer.send('answer', typeof window.process, typeof window.Buffer);
2016-03-25 20:03:49 +00:00
};