mirror of
https://github.com/status-im/codimd.git
synced 2025-02-21 06:48:14 +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
|