UNPKG

@textback/notification-widget

Version:

TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.

12 lines (11 loc) 361 B
export default function apiErrorHandler(res) { return res.json() .then(data => { if (data.$error) { return Promise.reject(data.$error.msg || data.$error.scn); } data.headers = res.headers; return data; }) .catch(() => Promise.reject(`widget error: ${res.status}`)); };