esnext.math.clamp.js 275 B

12345678910
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var clamp = require('../internals/math-clamp');
  4. // TODO: Remove from `core-js@4`
  5. // `Math.clamp` method
  6. // https://github.com/tc39/proposal-math-clamp
  7. $({ target: 'Math', stat: true, forced: true }, {
  8. clamp: clamp
  9. });