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

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