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.
14 lines
358 B
14 lines
358 B
8 years ago
|
const _ = require('lodash');
|
||
|
|
||
|
module.exports = (request, response) => {
|
||
|
if (!request.clean.hasOwnProperty('parsed_text')) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
// return true only if all non-admin properties of parsed_text are empty
|
||
|
return ['number', 'street', 'query', 'category'].every((prop) => {
|
||
|
return _.isEmpty(request.clean.parsed_text[prop]);
|
||
|
});
|
||
|
|
||
|
};
|