cust-math_2
v1.0.0
Published
A custom math utility for basic operations
Maintainers
Readme
cust-math
Simple utility for math operations: add, subtract, multiply.
Installation
npm install cust-math
## Usage exampleconst custMath = require('cust-math');
console.log(custMath.add(2, 3)); // 5 console.log(custMath.subtract(5, 2)); // 3 console.log(custMath.multiply(4, 2)); // 8
## Folder structurecust-math/ ├── index.js ├── package.json └── README.md
