ҪҸ
Size: a a a
ҪҸ
M
SK
MB
MB
MB
M
MB
MB
MB
ҪҸ
M
MB
MB
MB
K
export type Int = number & { __int__: void };
export const roundToInt = (num: number): Int => (num << 0) as Int;
export const parseInt = (value: string): Int => Number.parseInt(value) as Int;
export const isInt = (num: number): boolean => num % 1 === 0;
MB
K
で
M