Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
thecrypticace committed Apr 27, 2022
1 parent cc30777 commit 5e2ea81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/defaultExtractor.js
Expand Up @@ -107,7 +107,7 @@ function clipAtBalancedParens(input) {
// We can't use lookbehind assertions because we have to support Safari
// So, instead, we've emulated it using capture groups and we'll re-work the matches to accommodate
matches = Array.from(matches).flatMap((match) => {
const [_, ...groups] = match
const [, ...groups] = match

return groups.map((group, idx) =>
Object.assign([], match, {
Expand Down

0 comments on commit 5e2ea81

Please sign in to comment.