### GET jsonplaceholder
await fetcher('https://jsonplaceholder.typicode.com/posts')
### POST jsonplaceholder
- await fetcher('https://jsonplaceholder.typicode.com/posts', 'post', {
- title: 'foo', body: 'bar', userId: 1,
})
### DELETE jsonplaceholder
await fetcher('https://jsonplaceholder.typicode.com/posts/1', 'delete')
### PUT jsonplaceholder
- await fetcher('https://jsonplaceholder.typicode.com/posts/1', 'put', {
- title: 'foo', body: 'bar', userId: 1,
})
### PATCH jsonplaceholder
- await fetcher('https://jsonplaceholder.typicode.com/posts/1', 'patch', {
- title: 'foo',
})