Skip to content

Instantly share code, notes, and snippets.

@5t33
Last active July 7, 2020 03:35
Show Gist options
  • Save 5t33/55e9ec268234d98316ff04df35e236c9 to your computer and use it in GitHub Desktop.
Save 5t33/55e9ec268234d98316ff04df35e236c9 to your computer and use it in GitHub Desktop.
const formatApiError = (error) => JSON.stringify({
isBase64Encoded: false,
statusCode: error.statusCode,
headers: {
"Content-Type": typeof error.body === "string" ? "text/html" : "application/json",
},
body: error.body
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment