UNPKG

raptor-journey-planner

Version:

Implementation of the Round bAsed Public Transit Optimized Router (Raptor) journey planning algorithm.

11 lines (10 loc) 270 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isTransfer = void 0; /** * Type check for a kConnection connection */ function isTransfer(connection) { return connection.origin !== undefined; } exports.isTransfer = isTransfer;