(src: string)
| 48 | const commentStripRE = /^-?>|<!--|-->|--!>|<!-$/g |
| 49 | |
| 50 | export function escapeHtmlComment(src: string): string { |
| 51 | return src.replace(commentStripRE, '') |
| 52 | } |
| 53 | |
| 54 | export const cssVarNameEscapeSymbolsRE: RegExp = |
| 55 | /[ !"#$%&'()*+,./:;<=>?@[\\\]^`{|}~]/g |
no outgoing calls
no test coverage detected