mirror of
https://github.com/status-im/codimd.git
synced 2025-01-12 18:34:30 +00:00
07f32f5bbf
Signed-off-by: James Tsai <jamesscamel@gmail.com>
8 lines
123 B
JavaScript
8 lines
123 B
JavaScript
'use strict'
|
|
|
|
function stripTags (s) {
|
|
return s.replace(RegExp('</?[^<>]*>', 'gi'), '')
|
|
}
|
|
|
|
exports.stripTags = stripTags
|