This commit is contained in:
Konstantin Mamalakis 2018-03-16 17:54:44 +02:00 committed by Josh Harvey
parent 65f0e852d0
commit 577a85c9b1
3 changed files with 13 additions and 7 deletions

View file

@ -93,9 +93,7 @@ function processDate (dateNode) {
const year = parseInt(dateNode.Year)
const month = parseInt(dateNode.Month)
const day = parseInt(dateNode.Day)
const date = new Date(year, month - 1, day)
return {year, month, day, date}
return {year, month, day}
}
function processFeature (featureNode) {