UNPKG
@coremail/core-js
Version:
latest (3.20.3-fix-avoid-third-party-bind)
3.20.3-fix-avoid-third-party-bind
Standard library
github.com/zloirock/core-js
zloirock/core-js
@coremail/core-js
/
modules
/
esnext.math.degrees.js
12 lines
(9 loc)
•
273 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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
}, {
degrees
:
function
degrees
(
radians
) {
return
radians *
RAD_PER_DEG
; } });