UNPKG

mout

Version:

Modular Utilities

7 lines (6 loc) 173 B
/** * "Convert" value into a 32-bit unsigned integer. * IMPORTANT: Value will wrap at 2^32. */ declare function toUInt(val: number): number; export default toUInt;