sangwaritaxi_website/node_modules/motion-utils/dist/es/format-error-message.mjs

8 lines
246 B
JavaScript

function formatErrorMessage(message, errorCode) {
return errorCode
? `${message}. For more information and steps for solving, visit https://motion.dev/troubleshooting/${errorCode}`
: message;
}
export { formatErrorMessage };