You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
const input = require('../output.json'); |
|
|
|
const { by_date, event_times_to_dates, map_event } = require('./logic'); |
|
|
|
const events = input.map(map_event).map(event_times_to_dates).sort(by_date); |
|
|
|
console.log(JSON.stringify(events));
|
|
|