UNPKG

lenye_base

Version:

基础方法

9 lines (7 loc) 201 B
/** * Remove the html tags inside the script */ function stripTags(target) { return target.replace(/<script[^>]*>(\S\s*?)<\/script>/gim, '').replace(/<[^>]+>/g, ''); } export default stripTags;