/**
* Returns an number to the power of an exponent.
*
* @parambase - The base number.
* @paramexponent - The exponent to raise the base to.
*
* @returns The base to the power of the exponent.
*/exportvar power = functionpower(base, exponent) {
returnMath.pow(base, exponent);
};