Sha256: bfc0cfc3bcd7c2a9030312df17dad6e1bccc974d682d6726a4838d9d3813749c
Contents?: true
Size: 396 Bytes
Versions: 75
Compression:
Stored size: 396 Bytes
Contents
var test = require('tape'); var expand = require('..'); test('nested', function(t) { t.deepEqual(expand('{a,b{1..3},c}'), [ 'a', 'b1', 'b2', 'b3', 'c' ]); t.deepEqual(expand('{{A..Z},{a..z}}'), 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'.split('') ); t.deepEqual(expand('ppp{,config,oe{,conf}}'), [ 'ppp', 'pppconfig', 'pppoe', 'pppoeconf' ]); t.end(); });
Version data entries
75 entries across 63 versions & 7 rubygems