All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.modules.esnext.math.clamp.js Maven / Gradle / Ivy

The newest version!
'use strict';
var $ = require('../internals/export');

var min = Math.min;
var max = Math.max;

// `Math.clamp` method
// https://rwaldron.github.io/proposal-math-extensions/
$({ target: 'Math', stat: true, forced: true }, {
  clamp: function clamp(x, lower, upper) {
    return min(upper, max(lower, x));
  }
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy