motion
Version:
motion - moving development forward
15 lines (13 loc) • 373 B
JavaScript
exports.__esModule = true;
exports["default"] = getMatches;
function getMatches(string, regex, index) {
index || (index = 1); // default to the first capturing group
var matches = [];
var match;
while (match = regex.exec(string)) {
matches.push(match[index]);
}
return matches;
}
module.exports = exports["default"];
//# sourceMappingURL=getMatches.js.map