// This code is mostly from marudor's great bahn.expert project. // See here: https://github.com/marudor/bahn.expert/tree/main/src/server/coachSequence // Since the source is MIT licensed, to following code is it too. // import lines from './lines.json'; export function getLineFromNumber(journeyNumber) { if (!journeyNumber) return undefined; return lines[journeyNumber]; }