Sha256: 70e43374dfd7bd06023f7e19c1c9847c0a0d6a2c609896aabcabf860785ff738
Contents?: true
Size: 576 Bytes
Versions: 81
Compression:
Stored size: 576 Bytes
Contents
'use strict'; var GetIntrinsic = require('get-intrinsic'); var $TypeError = GetIntrinsic('%TypeError%'); var max = GetIntrinsic('%Math.max%'); var min = GetIntrinsic('%Math.min%'); var Type = require('./Type'); // https://262.ecma-international.org/12.0/#clamping module.exports = function clamp(x, lower, upper) { if (Type(x) !== 'Number' || Type(lower) !== 'Number' || Type(upper) !== 'Number' || !(lower <= upper)) { throw new $TypeError('Assertion failed: all three arguments must be MVs, and `lower` must be `<= upper`'); } return min(max(lower, x), upper); };
Version data entries
81 entries across 27 versions & 2 rubygems