This repository has been archived by the owner on Mar 30, 2022. It is now read-only.
v2.0.0
2.0.0 (2021-02-24)
Features
BREAKING CHANGES
- rename exported "set" to "setup"
- rename "queryStringifyFn" to "stringifyQueryParams"
// old
import { stringify } from "qs"
import { set } from "@asd14/fetch-browser"
set({
queryStringifyFn: source => qs.stringify(source),
})
// new
import { stringify } from "qs"
import { setup } from "@asd14/fetch-browser"
setup({
stringifyQueryParams: source => qs.stringify(source),
})