/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_util_JSON({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":null,"uses":[],"html":"
Files
Modified version of Douglas Crockford\"s json.js that doesn\"t\nmess with the Object prototype\nhttp://www.json.org/js.html
\nDecodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError unless the safe option is set.
\nThe JSON string
\nThe resulting object
\nEncodes an Object, Array or other value
\nThe variable to encode
\nThe JSON string
\nEncodes a Date. This returns the actual string which is inserted into the JSON string as the literal expression.\nThe returned value includes enclosing double quotation marks.
\n\n\nThe default return format is \"yyyy-mm-ddThh:mm:ss\".
\n\n\nTo override this:
\n\n\nExt.util.JSON.encodeDate = function(d) {\n return d.format('\"Y-m-d\"');\n};\n
\n\nThe Date to encode
\nThe string literal to use in a JSON string.
\n