mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
Log globals and this
This commit is contained in:
parent
54de4f4791
commit
4c39ace22b
1 changed files with 7 additions and 1 deletions
|
|
@ -1,7 +1,13 @@
|
||||||
|
|
||||||
|
|
||||||
;(async () => {
|
const rootThis = this
|
||||||
|
|
||||||
|
;(async function () {
|
||||||
console.log( 'process.env', process.env )
|
console.log( 'process.env', process.env )
|
||||||
|
console.log( 'global', global )
|
||||||
|
console.log( 'globalThis', globalThis )
|
||||||
|
|
||||||
|
console.log( 'rootThis', rootThis )
|
||||||
|
|
||||||
process.exit()
|
process.exit()
|
||||||
})()
|
})()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue