`fetch` option is called twice, once from [`computeObject`](https://github.com/RickWong/fetch-plus/blob/12485d7/packages/fetch-plus/src/index.js#L111) and once from the actual request call. ```js require('fetch-plus').createClient('', { fetch: () => { console.log('called'); return { ok: true }; } }).get(''); ``` Output: ``` called called ```