0ad/binaries/data/mods/_test.sim/simulation/helpers/test-helper.js
Ralph Sennhauser 2b67499e05
Fix eslint rule 'no-trailing-spaces'
eslint --no-config-lookup --fix --rule '"no-trailing-spaces": 1'

Ref: #7812
Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
2025-05-03 17:31:47 +02:00

6 lines
105 B
JavaScript

function AdditionHelper(a, b)
{
return a+b;
}
Engine.RegisterGlobal("AdditionHelper", AdditionHelper);