esm-square-calculator
v1.0.0
Published
A simple ESM module for calculating the square of a number
Readme
ESM Square Calculator
A simple ESM module for calculating the square of a number.
Installation
You can install the package using npm:
npm install esm-square-calculatorUsage
Here's how you can use the esm-square-calculator module in your project:
import { calculateSquare } from 'esm-square-calculator';
const squaredNumber = calculateSquare(5);
console.log(squaredNumber); // Output: 25