math-pow
v1.0.1
Published
A utility for functionally programming with exponents
Downloads
3
Readme
usage: ` pow = require('math-pow')
square = pow(2)
square(3) == 3*3
sqrt = pow(.5)
sqrt(4) == 2
// pow(exponent,base) vs Math.pow(base,exponent) pow(3,4) == Math.pow(4,3) `