0ad/binaries/data/mods/_test.scriptinterface/module/modified/base~0.append.js

8 lines
174 B
JavaScript
Raw Normal View History

// 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");