UNPKG

strapi-plugin-import-export-entries

Version:

Import/Export data from and to your database in just few clicks.

9 lines (6 loc) 301 B
export const handleRequestErr = (err, handlers) => { const defaultHandler = handlers.default || (() => {}); const { name: errorName, status: errorStatus } = err?.response?.payload?.error || {}; const handler = handlers[errorName] || handlers[errorStatus] || defaultHandler; handler(err); };