UNPKG

raptor-journey-planner

Version:

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

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