mirror of
https://github.com/electron/electron.git
synced 2026-01-26 07:48:08 -05:00
11 lines
210 B
JavaScript
11 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));
|