mirror of
https://gitlab.com/octtspacc/staticoso
synced 2025-04-11 00:31:13 +02:00
10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
// https://rwaldron.github.io/proposal-math-extensions/
|
|
var $export = require('./_export');
|
|
var RAD_PER_DEG = 180 / Math.PI;
|
|
|
|
$export($export.S, 'Math', {
|
|
degrees: function degrees(radians) {
|
|
return radians * RAD_PER_DEG;
|
|
}
|
|
});
|