function escapeJavaScript(str) { return str.replace(/(["'\f\b\n\t\r])/gm, "\\$1"); }
