Repository URL to install this package:
|
Version:
1.2.18 ▾
|
import wretch from 'wretch'
import { OneRequestStore } from '../typings'
import { fromMapToObj } from 'exotic'
function wretchAdapter(store: OneRequestStore) {
const url = store.get('url')
const wretchRequest = wretch(url)
return wretchRequest
}
export function adaptRequest(store: OneRequestStore) {
return wretchAdapter(store)
}