mirror of https://github.com/pelias/api.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
537 B
13 lines
537 B
const _ = require('lodash'); |
|
const Debug = require('../../helper/debug'); |
|
const debugLog = new Debug('controller:predicates:is_coarse_reverse'); |
|
const non_coarse_layers = ['address', 'street', 'venue']; |
|
|
|
module.exports = (req, res) => { |
|
// returns true if layers is undefined, empty, or contains 'address', 'street', or 'venue' |
|
const is_coarse_reverse = !_.isEmpty(req.clean.layers) && |
|
_.isEmpty(_.intersection(req.clean.layers, non_coarse_layers)); |
|
|
|
debugLog.push(req, is_coarse_reverse); |
|
return is_coarse_reverse; |
|
};
|
|
|