0.0.0 • Published 11 years ago

is-little-endian v0.0.0

Weekly downloads
50
License
-
Repository
github
Last release
11 years ago

is-little-endian

Checks if your system is little endian or not. Basically a short cut for:

((new Uint32Array((new Uint8Array([1,2,3,4])).buffer))[0] === 0x04030201)

Usage

Install using npm:

npm install is-little-endian

And then just use it like this:

if(require("is-little-endian")) {
  //Use little endian buffer
} else {
  //Use big endian buffer
}

Credits

(c) 2013 Mikola Lysenko. BSD License