将值转换为安全整数。
使用 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