(string: any)
| 5 | * eg. true, false, 1, [, ], {, }, ,, #, <, >, @, |
| 6 | */ |
| 7 | export function formatYamlString(string: any) { |
| 8 | return string.replace(/'/g, '\'\'') |
| 9 | } |
| 10 | |
| 11 | |
| 12 | export const formatThemeCustomConfigToRender = (config: any, currentThemeConfig: any) => { |
no outgoing calls
no test coverage detected