Here you can find the source of dequote()
/**/*from w w w.j av a2s. c o m*/ * Removes the quotes around a string. */ String.prototype.dequote = function() { return this.replace(/^"|"$/g, ''); }
String.prototype.quote = (function(){ return '"' + this + '"'; })
String.prototype.quote = function () { var c, i, l = this.length, o = '"'; for (i = 0; i < l; i += 1) { c = this.charAt(i); if (c >= ' ') { if (c === '\\' || c === '"') { o += '\\'; o += c; ...
String.prototype.quote = function(sym) { if (!sym) { sym = '"'; return sym + this + sym; };