db-vendo-client/format/location-filter.js

9 lines
229 B
JavaScript
Raw Normal View History

2017-11-12 00:45:51 +01:00
'use strict'
const formatLocationFilter = (stops, addresses, poi) => {
if (stops && addresses && poi) return 'ALL'
return (stops ? 'S' : '') + (addresses ? 'A' : '') + (poi ? 'P' : '')
2017-11-12 00:45:51 +01:00
}
2017-11-12 00:53:34 +01:00
module.exports = formatLocationFilter