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