(value: unknown)
| 65 | } |
| 66 | |
| 67 | export function stringify(value: unknown) { |
| 68 | return stringifyObject(value, { indent: ' ' }) |
| 69 | } |
| 70 | |
| 71 | export function indentAll(str: string, indent: string, skipFirst = false) { |
| 72 | return str |
no outgoing calls
no test coverage detected