eguatech/egua

Refatorar verificação de parâmetros

Closed this issue · 0 comments

egua/src/lib/eguamat.js

Lines 285 to 293 in 5671a03

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