Files
BeWoPlaner/BeWoPlanerMobil/node_modules/cryonic/examples/properties.js
Lyndon Jetten fda2c306b5 MoK: Report Viewer hinzugefügt
FaC: Das alte Flag von Terminen, die in die Zeiterfassung übernommen worden sind, wird ebenfalls berücksichtigt.
2023-03-13 19:39:04 +01:00

17 lines
492 B
JavaScript

var Cryo = require('../lib/cryo');
function first() {}
first.second = new Date();
first.second.third = [1, 2, 3];
first.second.third.fourth = { name: 'Hunter' };
try {
var withJSON = JSON.parse(JSON.stringify(first));
console.log(withJSON.second.third.fourth.name === 'Hunter');
} catch(e) {
console.log('error'); // error
}
var withCryo = Cryo.parse(Cryo.stringify(first));
console.log(withCryo.second.third.fourth.name === 'Hunter'); // true