IsMissingMetadata verifies the type of error.
(err error)
| 13 | |
| 14 | // IsMissingMetadata verifies the type of error. |
| 15 | func IsMissingMetadata(err error) bool { |
| 16 | return err == errMissingMetadata |
| 17 | } |
| 18 | |
| 19 | // Workspace represents a user's Exercism workspace. |
| 20 | // It may contain a user's own exercises, and other people's |
no outgoing calls
no test coverage detected