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