changed toISO in a more elaborate version

since the date contains the time zone
new Date("2000-01-01 00:00:00")                            //Sat Jan 01 2000 00:00:00 GMT+0100 . please note GMT+1
converting to ISO, results to convert in UTC
new Date("2000-01-01 00:00:00").toISOString()    //"1999-12-31T23:00:00.000Z" the UTC lose 1 hour
This commit is contained in:
Arsenio Siani 2018-11-14 18:54:22 +01:00 committed by GitHub
parent 50524230e9
commit 6a7b427360
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,7 +97,7 @@ class CodiceFiscale {
name: this.name,
surname: this.surname,
gender: this.gender,
birthday: this.birthday.toISOString().slice(0,10),
birthday: this.birthday.getFullYear()+"-"+(("00" + this.birthday.getMonth()).slice(-2))+"-"+(("00" + this.birthday.getDate()).slice(-2)),
birthplace: this.birthplace.nome,
birthplaceProvincia: this.birthplace.prov,
cf: this.code,