UNPKG

lenye_base

Version:

基础方法

11 lines (8 loc) 218 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;