Files
metabuilder/tools/analysis/code/analyze-render-performance/functions/count-matches.ts

4 lines
116 B
TypeScript

export function countMatches(content: string, regex: RegExp): number {
return content.match(regex)?.length ?? 0
}