13 lines
279 B
JavaScript
13 lines
279 B
JavaScript
setImmediate(function () {
|
|
try {
|
|
const types = {
|
|
process: typeof process,
|
|
setImmediate: typeof setImmediate,
|
|
global: typeof global,
|
|
Buffer: typeof Buffer
|
|
}
|
|
console.log(JSON.stringify(types))
|
|
} catch (e) {
|
|
console.log(e.message)
|
|
}
|
|
})
|