mirror of
				https://github.com/public-transport/db-vendo-client.git
				synced 2025-11-04 01:56:33 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			189 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			189 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const formatLocationFilter = (stops, addresses, poi) => {
 | 
						|
	if (!addresses && !poi) { // TODO other combos?
 | 
						|
		return 'HALTESTELLEN';
 | 
						|
	}
 | 
						|
	return 'ALL';
 | 
						|
};
 | 
						|
 | 
						|
export {
 | 
						|
	formatLocationFilter,
 | 
						|
};
 |