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

5 lines
153 B
JavaScript
Raw Normal View History

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