Fix for strange Date behavior in Node Webkit

pull/2/head
Jakub Szwacz 11 years ago
parent 7b5171f6bd
commit c5591bd039
  1. 19
      lib/model.js

@ -5,9 +5,7 @@
* Querying, update
*/
var dateToJSON = function () { return { $$date: this.getTime() }; }
, originalDateToJSON = Date.prototype.toJSON
, util = require('util')
var util = require('util')
, _ = require('underscore')
, modifierFunctions = {}
, lastStepModifierFunctions = {}
@ -67,21 +65,20 @@ function checkObject (obj) {
function serialize (obj) {
var res;
// Keep track of the fact that this is a Date object
Date.prototype.toJSON = dateToJSON;
res = JSON.stringify(obj, function (k, v) {
checkKey(k, v);
if (typeof v === undefined) { return null; }
if (typeof v === 'string' || typeof v === 'number' || typeof v === 'boolean' || v === null) { return v; }
if (v === undefined) { return undefined; }
if (v === null) { return null; }
// Hackish way of checking if object is Date (this way it works between execution contexts in node-webkit).
// We can't use value directly because for dates it is already string in this function (date.toJSON was already called),
// fortunately "this" is bound here to object which is owner of the key.
if (typeof this[k].getTime === 'function') { return { $$date: this[k].getTime() }; }
return v;
});
// Return Date to its original state
Date.prototype.toJSON = originalDateToJSON;
return res;
}

Loading…
Cancel
Save