If the given value is a function, calls the function with the given args. Otherwise it just returns value.
value
args
up.util.evalOption(5) // => 5 let fn = () => 1 + 2 up.util.evalOption(fn) // result: 3