mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-30 08:44:57 +00:00
4 lines
116 B
TypeScript
4 lines
116 B
TypeScript
export function countMatches(content: string, regex: RegExp): number {
|
|
return content.match(regex)?.length ?? 0
|
|
}
|