Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Resolve dependabot alerts
  • Loading branch information
vsvipul committed Jan 31, 2022
1 parent 934cc8f commit 051d7bc
Show file tree
Hide file tree
Showing 3 changed files with 5,827 additions and 4,707 deletions.
2 changes: 1 addition & 1 deletion jest.config.js
Expand Up @@ -17,7 +17,7 @@ const processStdoutWrite = process.stdout.write.bind(process.stdout);
process.stdout.write = (str, encoding, cb) => {
// Core library will directly call process.stdout.write for commands
// We don't want :: commands to be executed by the runner during tests
if (!str.match(/^::/)) {
if (!String(str).match(/^::/)) {
return processStdoutWrite(str, encoding, cb);
}
};

0 comments on commit 051d7bc

Please sign in to comment.