"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.makeErrorLessShitty = void 0;
const makeErrorLessShitty = function ({ error }) {
return {
...error,
message: error.message
};
};
exports.makeErrorLessShitty = makeErrorLessShitty;