mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 15:19:35 +02:00
15 lines
592 B
JavaScript
15 lines
592 B
JavaScript
'use strict'
|
|
|
|
const formatLocation = (profile, l, name = 'location') => {
|
|
if ('string' === typeof l) return profile.formatStation(l)
|
|
if ('object' === typeof l && !Array.isArray(l)) {
|
|
if (l.type === 'station') return profile.formatStation(l.id)
|
|
if ('string' === typeof l.id) return profile.formatPoi(l)
|
|
if ('string' === typeof l.address) return profile.formatAddress(l)
|
|
if (!l.type) throw new Error(`missing ${name}.type`)
|
|
throw new Error(`invalid ${name}.type: ${l.type}`)
|
|
}
|
|
throw new Error(name + ': valid station, address or poi required.')
|
|
}
|
|
|
|
module.exports = formatLocation
|