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

5 lines
150 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
}