FaC: Das alte Flag von Terminen, die in die Zeiterfassung übernommen worden sind, wird ebenfalls berücksichtigt.
9 lines
276 B
JavaScript
9 lines
276 B
JavaScript
var Cryo = require('../lib/cryo');
|
|
|
|
var now = new Date();
|
|
|
|
var withJSON = JSON.parse(JSON.stringify(now));
|
|
console.log(withJSON instanceof Date); // false
|
|
|
|
var withCryo = Cryo.parse(Cryo.stringify(now));
|
|
console.log(withCryo instanceof Date); // true
|