func IsExe()

in openwhisk/filetype.go [28:31]


func IsExe(buf []byte) bool {
	return len(buf) > 1 &&
		buf[0] == 0x4D && buf[1] == 0x5A
}