func IsBangPath()

in openwhisk/filetype.go [41:44]


func IsBangPath(buf []byte) bool {
	return len(buf) > 2 &&
		buf[0] == '#' && buf[1] == '!'
}