toSafeInteger - 将值转换为安全整数

优质
小牛编辑
119浏览
2023-12-01

将值转换为安全整数。

使用 Math.max()Math.min() 来找到最接近的安全值。 使用 Math.round() 转换为一个整数。

const toSafeInteger = num =>
  Math.round(Math.max(Math.min(num, Number.MAX_SAFE_INTEGER), Number.MIN_SAFE_INTEGER));
toSafeInteger('3.2'); // 3
toSafeInteger(Infinity); // 9007199254740991