gtfs-to-html 2.10.5 → 2.10.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/index.js +2 -2
- package/dist/app/index.js.map +1 -1
- package/dist/bin/gtfs-to-html.js +2 -2
- package/dist/bin/gtfs-to-html.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
package/dist/index.js
CHANGED
|
@@ -501,7 +501,7 @@ function formatTripNameForCSV(trip, timetable) {
|
|
|
501
501
|
}
|
|
502
502
|
|
|
503
503
|
// package.json
|
|
504
|
-
var version = "2.10.
|
|
504
|
+
var version = "2.10.6";
|
|
505
505
|
|
|
506
506
|
// src/lib/utils.ts
|
|
507
507
|
var isTimepoint = (stoptime) => {
|
|
@@ -1721,7 +1721,7 @@ function formatStopTime(stoptime, timetable, config) {
|
|
|
1721
1721
|
timetable.interpolatedStopSymbolUsed = true;
|
|
1722
1722
|
}
|
|
1723
1723
|
}
|
|
1724
|
-
if (stoptime.timepoint === null && stoptime.departure_time === null) {
|
|
1724
|
+
if (stoptime.timepoint === null && stoptime.departure_time === null && stoptime.stop_sequence === null) {
|
|
1725
1725
|
stoptime.skipped = true;
|
|
1726
1726
|
stoptime.classes.push("skipped");
|
|
1727
1727
|
if (timetable.noServiceSymbol !== null) {
|