UNPKG

xml-utils

Version:

Parse XML without Blowing Up Your Bundle Size

6 lines (5 loc) 182 B
export default function countSubstring(string, substring) { const pattern = new RegExp(substring, "g"); const match = string.match(pattern); return match ? match.length : 0; }