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

5 lines
153 B
JavaScript
Raw Permalink Normal View History

2020-03-20 14:28:31 -06:00
const { ipcRenderer } = require('electron');
2016-03-25 14:03:49 -06:00
window.onload = function () {
2020-03-20 14:28:31 -06:00
ipcRenderer.send('answer', typeof window.process, typeof window.Buffer);
};