'use strict'; module.exports = function regexExecAll(regex, target) { let matches = []; let match; regex.lastIndex = 0; while (match = regex.exec(target)) { matches.push(match); } return matches; }