isFunnyFile function

bool isFunnyFile(
  1. String path
)

Implementation

bool isFunnyFile(String path) {
  return funnyReg.hasMatch(path);
}