Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pad.js « test « brace-expansion « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4158775f1bd066391691aef42a48dab93d6f95c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
var test = require('tape');
var expand = require('..');

test('pad', function(t) {
  t.deepEqual(expand('{9..11}'), [
    '9', '10', '11'
  ]);
  t.deepEqual(expand('{09..11}'), [
    '09', '10', '11'
  ]);
  t.end();
});