UNPKG

mout

Version:

Modular Utilities

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