2020-03-20 13:28:31 -07:00
|
|
|
const { ipcRenderer } = require('electron');
|
2024-10-02 19:10:44 -07:00
|
|
|
|
2016-03-25 13:03:49 -07:00
|
|
|
window.onload = function () {
|
2020-03-20 13:28:31 -07:00
|
|
|
ipcRenderer.send('answer', typeof window.process, typeof window.Buffer);
|
|
|
|
};
|