Your IP : 216.73.216.91


Current Path : /var/node/inatote/Inatote-Backend/node_modules/core-js/modules/
Upload File :
Current File : /var/node/inatote/Inatote-Backend/node_modules/core-js/modules/esnext.math.radians.js

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 }, {
  radians: function radians(degrees) {
    return degrees * DEG_PER_RAD;
  }
});