UNPKG

mout

Version:

Modular Utilities

11 lines (9 loc) 210 B
import toString from '../lang/toString'; /** * Remove HTML tags from string. */ function stripHtmlTags(str) { str = toString(str); return str.replace(/<[^>]*>/g, ''); } export default stripHtmlTags;