We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Register formats that serialize data.
DataAPI.registerFormat("json", { fileExtension: 'json', mimeType: 'application/json', serialize: function() { return JSON.stringify.apply(JSON, arguments); }, unserialize: function() { return JSON.parse.apply(JSON, arguments); } });
There was an error while loading. Please reload this page.