const DEGREE = 180 / Math.PI; const toDegree = function(radian) { return DEGREE * radian; }; module.exports = toDegree;