isExcludePath method

bool isExcludePath(
  1. String path
)

Implementation

bool isExcludePath(String path) {
  return excludePaths.any((String p) => isListPath(path) || Glob(p).matches(path));
}