UNPKG

mout

Version:

Modular Utilities

12 lines (10 loc) 245 B
define(['../lang/toString'], function(toString){ /** * Remove HTML tags from string. */ function stripHtmlTags(str){ str = toString(str); return str.replace(/<[^>]*>/g, ''); } return stripHtmlTags; });