summaryrefslogtreecommitdiffstats
path: root/src/helpers/detag.js
blob: ca283a2bcb30d1decf23c8ae161b46979c4b7aa7 (plain)
1
2
3
4
'use strict'

const TAG_ALL_RX = /<[^>]+>/g
module.exports = (html) => html && html.replace(TAG_ALL_RX, '')