Checks if a file is hidden. @return result of check
()
| 399 | * @return result of check |
| 400 | */ |
| 401 | public boolean isHidden() { |
| 402 | return file.isHidden() || Strings.startsWith(name(), '.') || name().equals("node_modules"); |
| 403 | } |
| 404 | |
| 405 | /** |
| 406 | * Checks if the parent directory of this file can be ignored. |
no test coverage detected