time for ```function methodExistOrDefault(method, ...
# suitescript
f
time for
Copy code
function methodExistOrDefault(method, defaultValue) {
            if (typeof method === "function") {
                return method();
            }
            return defaultValue;
        }