Update util.js

This commit is contained in:
Renan Rocha 2021-02-11 18:17:00 -03:00 committed by GitHub
parent 1fcd3c38fc
commit f021f7309e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -527,6 +527,7 @@ function sanitizeShellString(str) {
s[i] === '\n' ||
s[i] === '\'' ||
s[i] === '`' ||
s[i] === ' ' ||
s[i] === '"')) {
result = result + s[i];
}