Closed gtoubiana closed 4 years ago
ce qui donne:
acte.Jour.prototype.variable = function () {
function variable(a) {
var that = this.variables, i = 0, result;
var ar = a.split(".");
var al = ar.length;
while (al--) {
that = that[ar[i]];
i++;
}
if (that instanceof Date && typeof that.getMonth === 'function') {
result = that;
} else {
result = '';
}
return new acte.Jour(result);
}
return variable;
}();
return acte;
}
return umdCallback;
}());
console.log(new acte.Jour('9/5/1846',false).variable('julien.od').gregorien());
Comment préserver les données issues de age() ou periode(), si je fais un new acte.Jour() ???
Changer gregorien.od
=> gregorien.date
, julien.od
=> julien.date
.
Ajouter age.min
, age.moyen
, age.max
, (ou naissance.min
, naissance.moyenne
, naissance.max
), periode.debut
, periode.fin
, periode.duree
?
.od
par .date
et od:
par date:
acte.Jour.prototype.variable = function () {
function variable(a) {
var that = this.variables;
var i = 0;
var ar = a.split(".");
var al = ar.length;
while (al--) {that = that[ar[i]]; i++;}
var result = (that instanceof Date && typeof that.getMonth === 'function') ? that : '';
return new acte.Jour(result);
}
return variable;
}();
et