(value: unknown, beautify: boolean = false)
| 82 | * @param {boolean} beautify Formats json to multiline |
| 83 | */ |
| 84 | export const displayValue = (value: unknown, beautify: boolean = false) => { |
| 85 | const { json } = serialize(value) |
| 86 | |
| 87 | return JSON.stringify(json, null, beautify ? 2 : undefined) |
| 88 | } |
| 89 | |
| 90 | // Sorting functions |
| 91 | type SortFn = (a: Query, b: Query) => number |
no outgoing calls
no test coverage detected
searching dependent graphs…