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

circular.js « example « object-inspect « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 487a7c169d0df8c4acb6ad02b26ce76175ecfc0f (plain)
1
2
3
4
5
6
'use strict';

var inspect = require('../');
var obj = { a: 1, b: [3, 4] };
obj.c = obj;
console.log(inspect(obj));