UNPKG

mout

Version:

Modular Utilities

14 lines (8 loc) 206 B
/** * "Convert" value into a 32-bit unsigned integer. * IMPORTANT: Value will wrap at 2^32. */ function toUInt(val){ return val >>> 0; } module.exports = toUInt;