esnext.math.deg-per-rad.js 211 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, forced: true }, {
  5. DEG_PER_RAD: Math.PI / 180
  6. });