Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/t1amat9409/pow-sa-developers
- Owner: t1amat9409
- Created: 2018-11-01T10:24:48.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-02T07:02:03.000Z (about 6 years ago)
- Last Synced: 2023-09-14T03:13:14.763Z (over 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: 2
- 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 moduleconsole.log("TEST ONE");
pow({ base: 2, exponent: 8 });
//output :
// > TEST ONE
// > 256console.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