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