2023-05-25 01:09:17 +00:00
|
|
|
var test = 'test'; // eslint-disable-line no-var
|
2018-07-13 02:17:11 +00:00
|
|
|
|
|
|
|
const types = {
|
|
|
|
require: typeof require,
|
|
|
|
electron: typeof electron,
|
|
|
|
window: typeof window,
|
|
|
|
localVar: typeof window.test
|
2020-03-20 20:28:31 +00:00
|
|
|
};
|
2018-07-13 02:17:11 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
console.log(JSON.stringify(types));
|