test(ngcc): tidy up helper function (#34135)

Thanks to @gkalpakl for the better regular expression approach.

PR Close #34135
This commit is contained in:
Pete Bacon Darwin 2019-12-03 08:36:38 +00:00 committed by Miško Hevery
parent 67eac733d2
commit e12933a3aa
1 changed files with 2 additions and 6 deletions

View File

@ -1293,10 +1293,6 @@ runInEachFileSystem(() => {
});
function countOccurrences(haystack: string, needle: string): number {
const regex = new RegExp(needle, 'g');
let count = 0;
while (regex.exec(haystack)) {
count++;
}
return count;
const matches = haystack.match(new RegExp(needle, 'g'));
return matches !== null ? matches.length : 0;
}