Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80556 views
1
var test = require('tape');
2
var expand = require('..');
3
4
test('ignores ${', function(t) {
5
t.deepEqual(expand('${1..3}'), ['${1..3}']);
6
t.deepEqual(expand('${a,b}${c,d}'), ['${a,b}${c,d}']);
7
t.deepEqual(expand('x${a,b}x${c,d}x'), ['x${a,b}x${c,d}x']);
8
t.end();
9
});
10
11