(s: string)
| 894 | const val = classNameAttr.value; |
| 895 | |
| 896 | const removeFromStr = (s: string) => |
| 897 | s.split(/\s+/).filter((c: string) => c && !pattern.test(c)).join(" "); |
| 898 | |
| 899 | if (val.type === "StringLiteral" || val.type === "Literal") { |
| 900 | val.value = removeFromStr(val.value); |
no outgoing calls
no test coverage detected