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
455 B
13 lines
455 B
const _ = require('lodash'); |
|
const Debug = require('../../helper/debug'); |
|
const debugLog = new Debug('controller:predicates:has_response_data'); |
|
const stackTraceLine = require('../../helper/stackTraceLine'); |
|
|
|
module.exports = (request, response) => { |
|
const has_response_data = _.get(response, 'data', []).length > 0; |
|
debugLog.push(request, () => ({ |
|
reply: has_response_data, |
|
stack_trace: stackTraceLine() |
|
})); |
|
return has_response_data; |
|
};
|
|
|