UNPKG

diginext-utils

Version:
12 lines (11 loc) 305 B
export default function indexesOf(str, regex) { let match, indexes = {}; const list = []; regex = new RegExp(regex); while ((match = regex.exec(str))) { if (!indexes[match[0]]) indexes[match[0]] = []; list.push(match.index); } return list; }