Skip to content

Instantly share code, notes, and snippets.

View FrostyZoob's full-sized avatar

Mike Zuber FrostyZoob

  • New York, USA
View GitHub Profile
@FrostyZoob
FrostyZoob / iso9601DateConv.js
Created October 15, 2012 18:09
Automatic ISO 8601 conversion in Javascript
$.ajaxSetup({
converters: { "text json": function (jsonString) {
var res = JSON.parseWithDate(jsonString);
if (res && res.hasOwnProperty("d"))
res = res.d;
return res;
} }
});