func Stripped()

in toutoumomoma.go [227:234]


func Stripped(path string) (sneaky bool, err error) {
	f, err := Open(path)
	if err != nil {
		return false, err
	}
	defer f.Close()
	return f.Stripped()
}