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

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

test('circular', function (t) {
    t.plan(1);
    var obj = { a: 1, b: [3, 4] };
    obj.c = obj;
    t.equal(inspect(obj), '{ a: 1, b: [ 3, 4 ], c: [Circular] }');
});