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

holes.js « test « object-inspect « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87fc8c84aedf765a2c908f451564e54ac27dcb85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var test = require('tape');
var inspect = require('../');

var xs = ['a', 'b'];
xs[5] = 'f';
xs[7] = 'j';
xs[8] = 'k';

test('holes', function (t) {
    t.plan(1);
    t.equal(
        inspect(xs),
        "[ 'a', 'b', , , , 'f', , 'j', 'k' ]"
    );
});