fast-power
v1.0.0
Published
Fast exponentiation function (Exponentiation by Squaring)
Downloads
4
Maintainers
Readme
fast-power
A super-fast exponentiation function using Exponentiation by Squaring.
Installation
npm install fast-powerUsage
const fastPower = require("fast-power");
console.log(fastPower(2, 10)); // 1024
console.log(fastPower(5, 3)); // 125
console.log(fastPower(2, -3)); // 0.125Features
- Fast computation
- Handles negative exponents
- Simple API
License
MIT
