Skip to content

Commit

Permalink
Fix recurse
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Mar 13, 2022
1 parent adf3913 commit e451ead
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/config/normalize/lib/wild_wild_path/iterate/recurse.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ export const expandRecursiveTokens = function (entries, index) {

const expandRecursiveToken = function (entry, index) {
const token = entry.queryArray[index]

if (token === undefined) {
return entry
}

const tokenType = getTokenType(token)

if (tokenType.recurse === undefined) {
Expand Down

0 comments on commit e451ead

Please sign in to comment.