• File: deep.js
  • Full Path: /var/www/paytek-africa.com/node_modules/object-inspect/test/deep.js
  • Date Modified: 07/19/2022 5:05 PM
  • File size: 400 bytes
  • MIME-type: text/plain
  • Charset: utf-8
var inspect = require('../');
var test = require('tape');

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

    t.equal(inspect([[[{ a: 1 }]]], { depth: 3 }), '[ [ [ [Object] ] ] ]');
});