UNPKG

@daysnap/utils

Version:
10 lines (8 loc) 182 B
/** * 向上圆整最接近的整数 * 0 => 1 * 123 => 200 * -123 => -200 */ declare function roundUpToNearestInteger(num: number): number; export { roundUpToNearestInteger };