(str: string, options: Options = {})
| 124 | }; |
| 125 | |
| 126 | export const pretty = (str: string, options: Options = {}) => { |
| 127 | return format(str.replaceAll('\0', ''), { |
| 128 | ...defaults, |
| 129 | ...options, |
| 130 | }); |
| 131 | }; |
no outgoing calls
no test coverage detected