Skip to content

Instantly share code, notes, and snippets.

@eastlondoner
Created July 22, 2016 21:11
Show Gist options
  • Save eastlondoner/0e6763581a420eeaf3ce7a1caced3dfc to your computer and use it in GitHub Desktop.
Save eastlondoner/0e6763581a420eeaf3ce7a1caced3dfc to your computer and use it in GitHub Desktop.
Is this server big or little endian
var littleEndian = (function() {
var buffer = new ArrayBuffer(2);
new DataView(buffer).setInt16(0, 256, true /* littleEndian */);
// Int16Array uses the platform's endianness.
return new Int16Array(buffer)[0] === 256;
})();
console.log(littleEndian ? 'little' : 'big');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment