1
2
3
4
5
6
7
8
9
10
11
// 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];
}