isGlobStar static method

bool isGlobStar(
  1. String globPart
)

Glob star (**) matches everything and subdirs

Implementation

static bool isGlobStar(String globPart) => globPart == '**';