operacoes-aritmeticas
v1.0.3
Published
Basic Arithmatics Operations
Downloads
4
Readme
This is just a test for uploading a module.
This module made the basic arithmetics operations.
All you have to do is require it and use it calling the 4 basic operations (somar, subtrair, multiplicar, dividir) and pass two parameters:
const operacoesAritmetics = require("operacoes-aritmeticas");
const resultado = somar(4, 5);
console.log(resultado); // 9