UNPKG

babisida

Version:
5 lines 143 B
module.exports.stripTags = function(html = ""){ //<b> or </b> => "" "" const text = html.replace(/<[^>]+>/gi, "") return text }