2020-03-20 20:28:31 +00:00
|
|
|
const { ipcRenderer } = require('electron');
|
2024-10-03 04:36:15 +00:00
|
|
|
|
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);
|
|
|
|
};
|