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 DEG_PER_RAD = Math.PI / 180;
|
|
|
|
// `Math.radians` method
|
|
// https://rwaldron.github.io/proposal-math-extensions/
|
|
$({ target: 'Math', stat: true, forced: true }, {
|
|
radians: function radians(degrees) {
|
|
return degrees * DEG_PER_RAD;
|
|
}
|
|
});
|