{ path: '',
loadChildren: './view/view.module#ViewModule'
//component: ViewComponent
}
let stringDate = '12 01 1999';
let parseDate = stringDate.split(' ');
let day = parseInt(parseDate[0], 10);
let month = parseInt(parseDate[1], 10) - 1;
let year = parseInt(parseDate[2], 10);
let d = new Date(year, month, day);
if (day == d.getDate() && month == d.getMonth() && year == d.getFullYear()) {
console.log(`${stringDate} - YES`);
} else {
console.error(`${stringDate} - NO`);
}