UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

11 lines (8 loc) 216 B
'use strict'; /** * Remove the html tags inside the script */ function stripTags(target) { return target.replace(/<script[^>]*>(\S\s*?)<\/script>/gim, '').replace(/<[^>]+>/g, ''); } module.exports = stripTags;