mirror of
https://github.com/electron/electron.git
synced 2026-02-03 19:55:43 -05:00
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
setImmediate(function () {
|
|
try {
|
|
const { remote } = require('electron');
|
|
console.log(JSON.stringify(typeof remote));
|
|
} catch (e) {
|
|
console.log(e.message);
|
|
}
|
|
});
|