slanted-gamedev-toolz
Version:
A slanted mix of tools for your brilliant ideas in game design.
8 lines • 368 B
TypeScript
/**
* Checks if a number exceeds JavaScript's `Number.MAX_SAFE_INTEGER` (±9007199254740991).
*
* @param number - The number to check.
* @returns `true` if the absolute value of the number is greater than `Number.MAX_SAFE_INTEGER`, otherwise `false`.
*/
export declare function isNumberTooLarge(number: number): boolean;
//# sourceMappingURL=_numberUtils.d.ts.map