mirror of
https://github.com/electron/electron.git
synced 2026-05-02 03:00:22 -04: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);
|
|
}
|
|
});
|