Node.js examples for String:Escape
String escaping function
/**/*from w ww . ja va2 s.c o m*/ * Poor man's escaping function */ Utils.escapeStr = function(str) { str = str.replace(/</g, "<"); str = str.replace(/>/g, ">") return str; }