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.scale.js 251B

123456789
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var scale = require('../internals/math-scale');
  4. // `Math.scale` method
  5. // https://rwaldron.github.io/proposal-math-extensions/
  6. $({ target: 'Math', stat: true, forced: true }, {
  7. scale: scale
  8. });