UNPKG

mout

Version:

Modular Utilities

12 lines (9 loc) 247 B
var toString = require('../lang/toString'); /** * Remove HTML tags from string. */ function stripHtmlTags(str){ str = toString(str); return str.replace(/<[^>]*>/g, ''); } module.exports = stripHtmlTags;