Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80529 views
1
var test = require('tap').test;
2
var quote = require('../').quote;
3
4
test('quote', function (t) {
5
t.equal(quote([ 'a', 'b', 'c d' ]), 'a b \'c d\'');
6
t.equal(
7
quote([ 'a', 'b', "it's a \"neat thing\"" ]),
8
'a b "it\'s a \\"neat thing\\""'
9
);
10
t.equal(
11
quote([ '$', '`', '\'' ]),
12
'\\$ \\` "\'"'
13
);
14
t.end();
15
});
16
17