Repository URL to install this package:
|
Version:
7.1.2 ▾
|
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)
}