Skip to content

Commit

Permalink
fix alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
decyjphr committed Aug 27, 2024
1 parent aefa374 commit 785d18f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/glob.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Glob {

// If not a glob pattern then just match the string.
if (!this.glob.includes('*')) {
this.regexp = new RegExp(`.*${glob}.*`, 'u')
this.regexp = new RegExp(`.*${this.glob}.*`, 'u')
return
}
const regexptex = this.glob
Expand Down

0 comments on commit 785d18f

Please sign in to comment.