debian-mirror-gitlab/core-js/modules/esnext.math.deg-per-rad.js

8 lines
197 B
JavaScript
Raw Normal View History

2019-09-25 13:30:05 +05:30
var $ = require('../internals/export');
// `Math.DEG_PER_RAD` constant
// https://rwaldron.github.io/proposal-math-extensions/
$({ target: 'Math', stat: true }, {
DEG_PER_RAD: Math.PI / 180
});