Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

esnext.math.degrees.js 301B

123456789101112
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var RAD_PER_DEG = 180 / Math.PI;
  4. // `Math.degrees` method
  5. // https://rwaldron.github.io/proposal-math-extensions/
  6. $({ target: 'Math', stat: true, forced: true }, {
  7. degrees: function degrees(radians) {
  8. return radians * RAD_PER_DEG;
  9. }
  10. });