mirror of
https://github.com/status-im/codimd.git
synced 2025-02-06 15:13:23 +00:00
8 lines
123 B
JavaScript
8 lines
123 B
JavaScript
'use strict'
|
|
|
|
function stripTags (s) {
|
|
return s.replace(RegExp(`</?[^<>]*>`, 'gi'), '')
|
|
}
|
|
|
|
exports.stripTags = stripTags
|