/** * "Convert" value into a 32-bit unsigned integer. * IMPORTANT: Value will wrap at 2^32. */functiontoUInt(val){// we do not use lang/toNumber because of perf and also because it// doesn't break the functionalityreturnval>>>0;}module.exports=toUInt;