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

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

test('deep', function (t) {
    t.plan(2);
    var obj = [[[[[[500]]]]]];
    t.equal(inspect(obj), '[ [ [ [ [ [Array] ] ] ] ] ]');
    t.equal(inspect(obj, { depth: 2 }), '[ [ [Array] ] ]');
});