mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 07:09:35 +02:00
11 lines
246 B
JavaScript
11 lines
246 B
JavaScript
|
'use strict'
|
||
|
|
||
|
const createParseArrOrDep = require('./arrival-or-departure')
|
||
|
|
||
|
const ARRIVAL = 'a'
|
||
|
const createParseArrival = (profile, opt, data) => {
|
||
|
return createParseArrOrDep(profile, opt, data, ARRIVAL)
|
||
|
}
|
||
|
|
||
|
module.exports = createParseArrival
|