UNPKG

202 BJavaScriptView Raw
1var annotate = require('annotate');
2var is = require('annois');
3
4
5module.exports = annotate('pow', 'Returns base to the exponent power, that is, base^exponent').
6 on(is.number, is.number, Math.pow);