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

A small, simple yet powerful JavaScript object stringifier / pretty-printer

Results 6 string.ify issues
Sort by recently updated
recently updated
newest added

If you try to pretty print an object with long keys the output will be garbled because it becomes far too wide for the terminal. An improvement would be to...

`undefined` is not JSON compatible and will cause e.g. `jq` to barf.

source: ```js const o = [1,2,3,4,5,6,7,8,9,10] console.log(stringify.configure({ maxLength: 0, maxArrayLength: 5, fancy: false, })(o)) ``` output: ``` ``` hope like this: ``` [ 1, 2, 3, 4, 5, ...more ]...

Hi @xpl! I love this library and `ololog`, however I just found out that this library, `string.bullet` and `printable-characters` pollute my webpack bundle with unwanted `const`, breaking IE11. I'm assuming...

@xpl, this is great. I'm just wondering: is a tool like this available for calling within python, so that string representations like these could be generated from python dicts /...

I'd suggest changing your readme into reference-style documentation rather than tutorial-style. Tutorial style makes it hard to visually parse and find just what you need - you need to read...

enhancement