db-vendo-client/format/location-filter.js
2017-11-12 00:53:34 +01:00

8 lines
238 B
JavaScript

'use strict'
const formatLocationFilter = (stations, addresses, poi) => {
if (stations && addresses && poi) return 'ALL'
return (stations ? 'S' : '') + (addresses ? 'A' : '') + (poi ? 'P' : '')
}
module.exports = formatLocationFilter