Decode Unsigned Int 32 - Node.js Number

Node.js examples for Number:Int

Description

Decode Unsigned Int 32

Demo Code


exports.decodeUInt32 = function(array, index) {
  return array[index] | array[index + 1] << 8 | array[index + 2] << 16 | array[index + 3] << 24;
}

Related Tutorials