eguatech / egua

Linguagem de programação em português, simples e moderna

Home Page:https://egua.dev/idegua/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Remover função intervalo

lucaspompeun opened this issue · comments

egua/src/lib/eguamat.js

Lines 296 to 304 in 5671a03

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

@lucaspompeun Issue pode ser fechada.