Skip to content

Commit

Permalink
Make all wsh globals non-writable
Browse files Browse the repository at this point in the history
Fixes #157
  • Loading branch information
sindresorhus committed Apr 12, 2020
1 parent 3f2d8e7 commit 4edf41b
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions globals.json
Expand Up @@ -1203,19 +1203,19 @@
"quit": false
},
"wsh": {
"ActiveXObject": true,
"CollectGarbage": true,
"Debug": true,
"Enumerator": true,
"GetObject": true,
"RuntimeObject": true,
"ScriptEngine": true,
"ScriptEngineBuildVersion": true,
"ScriptEngineMajorVersion": true,
"ScriptEngineMinorVersion": true,
"VBArray": true,
"WScript": true,
"WSH": true
"ActiveXObject": false,
"CollectGarbage": false,
"Debug": false,
"Enumerator": false,
"GetObject": false,
"RuntimeObject": false,
"ScriptEngine": false,
"ScriptEngineBuildVersion": false,
"ScriptEngineMajorVersion": false,
"ScriptEngineMinorVersion": false,
"VBArray": false,
"WScript": false,
"WSH": false
},
"jquery": {
"$": false,
Expand Down

0 comments on commit 4edf41b

Please sign in to comment.