cartodb-4.42/lib/assets/javascripts/dashboard/helpers/response-parser.js
2024-04-06 05:25:13 +00:00

11 lines
303 B
JavaScript

module.exports = function (response) {
const responseJSON = response && response.responseJSON;
let errors = responseJSON && responseJSON.message;
if (responseJSON && responseJSON.errors && responseJSON.errors.length) {
errors = responseJSON.errors.join('. ') + '. ';
}
return errors;
};