Sha256: c3ac2d2a6a141f25f6dcf477e948817e2a965b007aa0f4ee5669ccfc54db259e
Contents?: true
Size: 247 Bytes
Versions: 69
Compression:
Stored size: 247 Bytes
Contents
var toString = require('../lang/toString'); /** * Remove HTML tags from string. */ function stripHtmlTags(str){ str = toString(str); return str.replace(/<[^>]*>/g, ''); } module.exports = stripHtmlTags;
Version data entries
69 entries across 69 versions & 2 rubygems