10 lines
210 B
JavaScript
10 lines
210 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));
|