mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
13 lines
301 B
JavaScript
13 lines
301 B
JavaScript
'use strict';
|
|
var $ = require('../internals/export');
|
|
|
|
var RAD_PER_DEG = 180 / Math.PI;
|
|
|
|
// `Math.degrees` method
|
|
// https://rwaldron.github.io/proposal-math-extensions/
|
|
$({ target: 'Math', stat: true, forced: true }, {
|
|
degrees: function degrees(radians) {
|
|
return radians * RAD_PER_DEG;
|
|
}
|
|
});
|