electron/spec/fixtures/module/preload-node-off.js

14 lines
283 B
JavaScript
Raw Normal View History

2016-03-25 13:03:49 -07:00
setImmediate(function () {
try {
2018-05-15 01:00:49 +03:00
const types = {
process: typeof process,
setImmediate: typeof setImmediate,
global: typeof global,
Buffer: typeof Buffer
2020-03-20 13:28:31 -07:00
};
console.log(JSON.stringify(types));
} catch (e) {
2020-03-20 13:28:31 -07:00
console.log(e.message);
}
2020-03-20 13:28:31 -07:00
});