function getOrderList(){ return Promise.all([ fetch('/api/orders.json?page=1&per_page=2&status=&fulfillment_status=&financial_status=&post_sale_status=&with_fulfillments=true',{ method: 'get', credentials: 'same-origin', })]).then((res) => { return Promise.all([res[0].json()]) }).then((resData) => { console.log('resData', resData[0]) return resData[0]; }); } exportFunction('getOrderList',getOrderList);