Snowtrack / snowfs

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
1 occurrence in this check
Documentation comment not found for function declaration fileMatch
 22
 23const versionString = '0.9.3';
 24
 25function fileMatch(relFilepath: string, relCwd: string, pathPattern: string): boolean { 26  return pathPattern === '*' || (pathPattern === '.' && relFilepath.startsWith(relCwd)) || pathPattern === relative(relCwd, relFilepath);
 27}
 28