A utility for functionally programming with exponents
npm install math-pow
usage:pow = require('math-pow')
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)