| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1 1 14 1 | define(function () {
/**
* "Convert" value into a 32-bit unsigned integer.
* IMPORTANT: Value will wrap at 2^32.
* @version 0.2.0 (2011/11/25)
*/
function toUInt(val){
return val >>> 0;
}
return toUInt;
});
|