(cssText: string)
| 1 | const cssCommentsRegex = /\/\*[\s\S]*?\*\//g; |
| 2 | |
| 3 | export function removeCSSComments(cssText: string): string { |
| 4 | return cssText.replace(cssCommentsRegex, ''); |
| 5 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…