mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/RoboCommander.git
synced 2026-06-15 12:46:04 +00: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;
|
|
}
|
|
});
|