({ pattern })
| 196 | return path || getCwd() |
| 197 | }, |
| 198 | async preparePermissionMatcher({ pattern }) { |
| 199 | return rulePattern => matchWildcardPattern(rulePattern, pattern) |
| 200 | }, |
| 201 | async validateInput({ path }): Promise<ValidationResult> { |
| 202 | // If path is provided, validate that it exists |
| 203 | if (path) { |
nothing calls this directly
no test coverage detected