math-algo
v1.0.1
Published
`math-algo` is a library of utility functions to perform mathematical and algorithmic operations.
Readme
math-algo
math-algo is a library of utility functions to perform mathematical and algorithmic operations.
Installation
Install the package via npm:
npm install math-algoUsage
Import the library and use its methods:
const { add, multiply } = require('algo-helpers');
console.log(add(2, 3)); // 5
console.log(multiply(2, 3)); // 6Functions
- add(a, b): Adds two numbers.
- multiply(a, b): Multiplies two numbers.
Contributing
Contributions are welcome! Feel free to open an issue or submit a pull request.
License
This project is licensed under the MIT License.
