'use strict'

const formatLocation = (profile, l) => {
	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)
		throw new Error('invalid location type: ' + l.type)
	}
	throw new Error('valid station, address or poi required.')
}

module.exports = formatLocation