mirror of
https://github.com/electron/electron.git
synced 2026-01-27 08:18:28 -05:00
8 lines
167 B
JavaScript
8 lines
167 B
JavaScript
setImmediate(function() {
|
|
try {
|
|
console.log([typeof process, typeof setImmediate, typeof global].join(' '));
|
|
} catch (e) {
|
|
console.log(e.message);
|
|
}
|
|
});
|