Files
AstroJS/closure-compilerd/example/js/hello.js
T
2026-06-11 08:07:38 +08:00

14 lines
260 B
JavaScript

/** @define {boolean} */
var DEBUG = false;
function internalNameThatShouldDisappear(name) {
if (DEBUG) {
console.log('debug mode');
}
return 'hello ' + name;
}
window.demoHello = function(name) {
return internalNameThatShouldDisappear(name);
};