durlabh
15 Apr 2009, 12:06 PM
IMHO, in Json.js,
this.decode = isNative ? JSON.stringify : function(json){
return eval("(" + json + ')');
};
should read as:
this.decode = isNative ? JSON.parse : function(json){
return eval("(" + json + ')');
};
this.decode = isNative ? JSON.stringify : function(json){
return eval("(" + json + ')');
};
should read as:
this.decode = isNative ? JSON.parse : function(json){
return eval("(" + json + ')');
};