Skip to content

Commit

Permalink
Fix vulnerable minimist dep
Browse files Browse the repository at this point in the history
  • Loading branch information
bas080 committed Apr 3, 2022
1 parent f2943d0 commit 465ba2c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ test('Matches always when pattern equals value', check(gen.any, (t, val) => {
t.end()
}))

test('Matches always when arguments match multi pattern', check(gen.array(gen.any, {}), (t, args) => {
test('Matches always when arguments match multi pattern', check(gen.array(gen.any), (t, args) => {
patroon(
multi(...args), () => t.end()
)(...args)
Expand Down

0 comments on commit 465ba2c

Please sign in to comment.