Edit File by line
/home/barbar84/www/wp-inclu.../js
File: json2.js
// in JavaScript: it can begin a block or an object literal. We wrap the text
[500] Fix | Delete
// in parens to eliminate the ambiguity.
[501] Fix | Delete
[502] Fix | Delete
j = eval('(' + text + ')');
[503] Fix | Delete
[504] Fix | Delete
// In the optional fourth stage, we recursively walk the new structure, passing
[505] Fix | Delete
// each name/value pair to a reviver function for possible transformation.
[506] Fix | Delete
[507] Fix | Delete
return typeof reviver === 'function'
[508] Fix | Delete
? walk({'': j}, '')
[509] Fix | Delete
: j;
[510] Fix | Delete
}
[511] Fix | Delete
[512] Fix | Delete
// If the text is not JSON parseable, then a SyntaxError is thrown.
[513] Fix | Delete
[514] Fix | Delete
throw new SyntaxError('JSON.parse');
[515] Fix | Delete
};
[516] Fix | Delete
}
[517] Fix | Delete
}());
[518] Fix | Delete
12
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function