@henry11703/package
v1.2.0
Published
Simple package in NodeJs
Downloads
39
Readme
A package that contains a set of functions to perform basic arithmetic operations.
How to install
npm install @henry11703/packageHow to use
export { suma, resta } from '@henry11703/package';function resta(a, b) {
return a - b;
}function suma(a, b) {
return a + b;
}