mirror of
https://github.com/status-im/codimd.git
synced 2025-02-10 20:36:31 +00:00
0387f67a50
Signed-off-by: Raccoon <raccoon@hackmd.io>
8 lines
123 B
JavaScript
8 lines
123 B
JavaScript
'use strict'
|
|
|
|
function stripTags (s) {
|
|
return s.replace(RegExp('</?[^<>]*>', 'gi'), '')
|
|
}
|
|
|
|
exports.stripTags = stripTags
|