/**
* Returns the remainder of two numbers.
*
* @paramdividend - The number to divide.
* @paramdivisor - The number to divide with.
*
* @returns The remainder of the two numbers.
*/exportvar modulo = functionmodulo(dividend, divisor) {
return dividend % divisor;
};