projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
e4158775f1bd066391691aef42a48dab93d6f95c
[platform/framework/web/crosswalk-tizen.git]
/
1
var test = require('tape');
2
var expand = require('..');
3
4
test('pad', function(t) {
5
t.deepEqual(expand('{9..11}'), [
6
'9', '10', '11'
7
]);
8
t.deepEqual(expand('{09..11}'), [
9
'09', '10', '11'
10
]);
11
t.end();
12
});
13