UNPKG

@ministryofjustice/hmpps-digital-prison-reporting-frontend

Version:

The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.

20 lines (19 loc) 508 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = sanitise; function sanitise(error) { if (error.response) { return { text: error.response.text, status: error.response.status, headers: error.response.headers, data: error.response.body, message: error.message, stack: error.stack, }; } return { message: error.message, stack: error.stack, }; }