Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/t1amat9409/pow-sa-developers

Online demo
https://github.com/t1amat9409/pow-sa-developers

es6 javascript math math-expressions math-library

Last synced: 22 days ago
JSON representation

Online demo

Awesome Lists containing this project

README

        

# pow-sa-developers
A simple re-implementation of Math.pow(base, exponent)

## Example

```js
import pow from './pow'; //import pow module

console.log("TEST ONE");
pow({ base: 2, exponent: 8 });

//output :
// > TEST ONE
// > 256

console.log("TEST TWO, WITH DEBUG MODE");

pow({ base: 2, exponent: 8, isDebug: true });

//output :
// > TEST TWO, WITH DEBUG MODE
// > 256
// > This is only triggered in debug mode 256

```

### ANY Backers?? I'm justing messsing with y'all