eguatech/egua

Refatorar verificação de parâmetros

Closed this issue · 0 comments

egua/src/lib/eguamat.js

Lines 274 to 282 in 5671a03

module.exports.max = function(a) {
if (isNaN(a) || a === null)
throw new RuntimeError(
this.token,
"Você deve prover valores para max(a)."
);
return Math.max.apply(null, a);
};