mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 15:19:35 +02:00
10 lines
254 B
JavaScript
10 lines
254 B
JavaScript
'use strict'
|
|
|
|
const createParseArrOrDep = require('./arrival-or-departure')
|
|
|
|
const DEPARTURE = 'd'
|
|
const createParseDeparture = (profile, opt, data) => {
|
|
return createParseArrOrDep(profile, opt, data, DEPARTURE)
|
|
}
|
|
|
|
module.exports = createParseDeparture
|