db-vendo-client/parse/find-remarks.js
Kristjan ESPERANTO 66d9fb5194
apply linting rules
follow-up of 228c7253
2024-02-10 16:50:12 +01:00

23 lines
697 B
JavaScript

import flatMap from 'lodash/flatMap.js';
// There are two kinds of notes: "remarks" (in `remL`) and HAFAS
// Information Manager (HIM) notes (in `himL`). The former describe
// the regular operating situation, e.g. "bicycles allows", whereas
// the latter describe cancellations, construction work, etc.
// hafas-client's naming scheme:
// - hints: notes from `remL` for regular operation
// - warnings: notes from `himL` for cancellations, construction, etc
// - remarks: both "notes" and "warnings"
const findRemarks = (refs) => {
return flatMap(refs, (ref) => {
return [ref.warning, ref.hint]
.filter(rem => Boolean(rem))
.map(rem => [rem, ref]);
});
};
export {
findRemarks,
};