(styles: string)
| 131 | * @param {string} styles Tokenized styles to fix. |
| 132 | */ |
| 133 | export function detokenize(styles: string): string { |
| 134 | if (styles) { |
| 135 | styles = resolveThemableArray(splitStyles(styles)); |
| 136 | } |
| 137 | |
| 138 | return styles; |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * Resolves ThemingInstruction objects in an array and joins the result into a string. |
no test coverage detected