Node.js examples for Number:Int
Decode Unsigned Int 32
exports.decodeUInt32 = function(array, index) { return array[index] | array[index + 1] << 8 | array[index + 2] << 16 | array[index + 3] << 24; }