mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-21 09:06:49 +00:00
4043f954a7
Module local values are visible to Appendixes. This mechanism can be used for mods.
8 lines
174 B
JavaScript
8 lines
174 B
JavaScript
// Even though this is local to the module, it's visible to other appendixes.
|
|
function appendToResult(fun, str)
|
|
{
|
|
return () => fun() + str;
|
|
}
|
|
|
|
fn = appendToResult(fn, "0");
|