1.0.3 • Published 3 years ago

operacoes-aritmeticas v1.0.3

Weekly downloads
4
License
ISC
Repository
-
Last release
3 years ago

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