11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
|
var test = 'test' // eslint-disable-line
|
||
|
|
||
|
const types = {
|
||
|
require: typeof require,
|
||
|
electron: typeof electron,
|
||
|
window: typeof window,
|
||
|
localVar: typeof window.test
|
||
|
}
|
||
|
|
||
|
console.log(JSON.stringify(types))
|