esnext.math.rad-per-deg.js 239 B

1234567
  1. var $ = require('../internals/export');
  2. // `Math.RAD_PER_DEG` constant
  3. // https://rwaldron.github.io/proposal-math-extensions/
  4. $({ target: 'Math', stat: true, nonConfigurable: true, nonWritable: true }, {
  5. RAD_PER_DEG: 180 / Math.PI
  6. });