Javascript Array push32le(aLongWord)

Description

Javascript Array push32le(aLongWord)


Array.prototype.push32le = function(aLongWord) {
   this.push((aLongWord     ) & 0xff,
             (aLongWord >> 8) & 0xff,
             (aLongWord >> 16) & 0xff,
             (aLongWord >> 24) & 0xff);
};



PreviousNext

Related