將原先專案內的 resolveResponse() 相關補助方法抽離,並整合進 RestPromise ```js let data = async axios.get(API_URL) .then(resolveResponse(RESPONSE_WITH_DATA)) .then((res) => res.data.data); .catch((error) => { console.error('回傳格式不符合預期'); }) ```