package common

import 

// IsLittleEndian checks if the current platform uses little-endian.
// copied from https://github.com/ntrrg/ntgo/blob/v0.8.0/runtime/infrastructure.go#L16 (MIT License)
func () bool {
	var  int16 = 0x0011
	return *(*byte)(unsafe.Pointer(&)) == 0x11
}