4 lines
96 B
Plaintext
4 lines
96 B
Plaintext
export default function escapeCommas(className) {
|
|
return className.replace(/\\,/g, '\\2c ')
|
|
}
|