(name string)
| 40 | type noOpFS struct{} |
| 41 | |
| 42 | func (fileSystem noOpFS) Open(name string) (fs.File, error) { return nil, nil } |
| 43 | |
| 44 | // IsNoOpFS reports whether the given "fileSystem" is a no operation fs. |
| 45 | func IsNoOpFS(fileSystem fs.FS) bool { |
no outgoing calls
no test coverage detected