Кто догадается в каком формате приходит дата?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
function parseDate(lines) { const date = lines.split('\n').filter(l => /^Date:/.test(l) )[0].split(/:\s+/)[1]; const momentInstance = moment(new Date(date)); if (!momentInstance.isValid()) { throw new Error('Invalid Date'); } return momentInstance; }; |