string.ify icon indicating copy to clipboard operation
string.ify copied to clipboard

Hope to provide a way of printing a part of an object

Open takayama-lily opened this issue 5 years ago • 0 comments

source:

const o = [1,2,3,4,5,6,7,8,9,10]
console.log(stringify.configure({
    maxLength:       0,
    maxArrayLength:  5,
    fancy:           false,
})(o))

output:

<array[10]>

hope like this:

[
    1,
    2,
    3,
    4,
    5,
    ...more<5>
]

takayama-lily avatar Jul 30 '20 06:07 takayama-lily