aditya_6394
v1.0.3
Published
new package
Readme
# aditya_6394
Basic Math Functionalities for Learning npm
This package offers a collection of simple math modules for performing fundamental arithmetic operations. It was developed as a learning exercise for understanding npm package creation and management.
## Installation
To install the package, use npm or yarn:
npm install aditya_6394or
yarn add aditya_6394## Available Modules
- add: Adds two numbers together.
- subtract: Subtracts one number from another.
- multiply: Multiplies two numbers.
- divide: Divides one number by another.
## Usage
Import the desired module and use its functions:
const { add, subtract, multiply, divide } = require('my-first-npm-package');
const sum = add(5, 3); // 8
const difference = subtract(10, 4); // 6
const product = multiply(6, 7); // 42
const quotient = divide(20, 5); // 4## Version History
- 1.0.0: Initial release with basic modules.
- 1.0.1: Removed unnecessary files.
- 1.0.2: Fixed issues in package.json.
- 1.0.3: Added this README.md file for better documentation.
## License
This package is licensed under the ISC License.
