const RADIAN = Math.PI / 180; const toRadian = function(degree) { return RADIAN * degree; }; module.exports = toRadian;