mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 13:11:31 +03:00
12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
|
function f(CONFIG) {
|
||
|
return CONFIG.VALUE;
|
||
|
}
|
||
|
function g() {
|
||
|
var CONFIG = { VALUE: 1 };
|
||
|
return CONFIG.VALUE;
|
||
|
}
|
||
|
function h() {
|
||
|
return CONFIG.VALUE;
|
||
|
}
|
||
|
if (CONFIG.DEBUG[0]) console.debug("foo");
|