es7.math.fscale.js 332 B

12345678910
  1. // https://rwaldron.github.io/proposal-math-extensions/
  2. var $export = require('./_export');
  3. var scale = require('./_math-scale');
  4. var fround = require('./_math-fround');
  5. $export($export.S, 'Math', {
  6. fscale: function fscale(x, inLow, inHigh, outLow, outHigh) {
  7. return fround(scale(x, inLow, inHigh, outLow, outHigh));
  8. }
  9. });