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: about 1 year ago
JSON representation
Online demo
- Host: GitHub
- URL: https://github.com/t1amat9409/pow-sa-developers
- Owner: t1amat9409
- Created: 2018-11-01T10:24:48.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-02T07:02:03.000Z (over 7 years ago)
- Last Synced: 2025-03-30T22:15:28.225Z (about 1 year ago)
- Topics: es6, javascript, math, math-expressions, math-library
- Language: JavaScript
- Homepage: https://codesandbox.io/s/github/t1amat9409/pow-sa-developers
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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