Node.js examples for String:Strip
Strip tags from String
String.prototype.stripTags = function() { return (this || '').replace(/<[^>]+>/g, ''); };