Node.js examples for String:HTML String
Remove <BR> from String
String.prototype.removeBr = function() { return this.replace(/(<br \/>|<br>)/g, ''); };