db-vendo-client/stringify/location-filter.js
2017-11-12 00:46:32 +01:00

8 lines
244 B
JavaScript

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