(html: string)
| 32 | } |
| 33 | |
| 34 | export function removeClassesFromHTML(html: string) { |
| 35 | return html.replace(/class="\S*"\s/g, ""); |
| 36 | } |
| 37 | |
| 38 | export function removeMetaFromHTML(html: string) { |
| 39 | return html.replace(/<meta charset='utf-8'>/g, ""); |
no outgoing calls
no test coverage detected