Skip to content
Permalink
Browse files
Resolve dependabot alerts
  • Loading branch information
vsvipul committed Jan 31, 2022
1 parent 934cc8f commit 051d7bc1061ce3f3807d973636c0d4d954e9e1e4
Showing 3 changed files with 5,827 additions and 4,707 deletions.
@@ -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.