mirror of
https://github.com/status-im/codimd.git
synced 2025-01-12 21:34:15 +00:00
4 lines
84 B
TypeScript
4 lines
84 B
TypeScript
|
export function stripTags(s) {
|
||
|
return s.replace(RegExp('</?[^<>]*>', 'gi'), '')
|
||
|
}
|