We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
quote
~
1 parent 59bbf8b commit 617d119Copy full SHA for 617d119
1 file changed
test/quote.js
@@ -30,7 +30,7 @@ test('quote', function (t) {
30
t.end();
31
});
32
33
-test('quote tilde (escapes leading ~ to prevent shell tilde-expansion)', function (t) {
+test('quote tilde (escapes every ~ to prevent shell tilde-expansion)', function (t) {
34
t.equal(quote(['~']), '\\~');
35
t.equal(quote(['~/foo']), '\\~/foo');
36
t.equal(quote(['~root']), '\\~root');
0 commit comments