nodered_cfg/node_modules/core-js/modules/esnext.math.radians.js

13 lines
301 B
JavaScript
Raw Permalink Normal View History

2024-08-24 20:48:14 +02:00
'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;
}
});