cust_math
v0.2.0
Published
custome package for mathematical operations
Maintainers
Readme
cust-math
A tiny utility for basic math operations: add, subtract, and multiply.
Installation
npm install cust-mathUsage example
const custMath = require('cust-math');
console.log(custMath.add(2, 3)); // 5
console.log(custMath.subtract(5, 2)); // 3
console.log(custMath.multiply(4, 2)); // 8Folder structure
cust-math/
├── index.js
├── package.json
└── README.md
