queckezz / fmt-obj

Stringifies any javascript object in your console for CLI inspection :sparkles:
MIT License
444 stars 16 forks source link

offset depth elements #7

Open Kikobeats opened 7 years ago

Kikobeats commented 7 years ago

Looks like is not apply for all the elements

with offset = 2:

❯ node examples/formatter.js

  hello: "world"
    foo: "bar"
   deep:
         foo: "bar"
         arr:
              0: 1
              1: 2
              2: 3
              3: 4
              4: 5

with offset = 4:

❯ node examples/formatter.js

    hello: "world"
      foo: "bar"
     deep:
           foo: "bar"
           arr:
                0: 1
                1: 2
                2: 3
                3: 4
                4: 5