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