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