UNPKG

wonder.js

Version:
15 lines (10 loc) 221 B
'use strict'; function getDegToRad(param) { return Math.PI / 180; } function getRadToDeg(param) { return 180 / Math.PI; } exports.getDegToRad = getDegToRad; exports.getRadToDeg = getRadToDeg; /* No side effect */