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