UNPKG

113 BJavaScriptView Raw
1var pow = require('../').pow;
2
3
4module.exports = function(op, a) {
5 return a === 0 || op(pow(Math.E, a));
6};
7