ublo-lib 1.31.19 → 1.31.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -30,6 +30,6 @@ export const fetcher = method => async (_url, body, params = {}, _headers = {},
|
|
|
30
30
|
throw err;
|
|
31
31
|
}
|
|
32
32
|
};
|
|
33
|
-
export const get = (url, params, headers) => fetcher("GET")(url, undefined, params, headers);
|
|
33
|
+
export const get = (url, params, headers, signal) => fetcher("GET")(url, undefined, params, headers, signal);
|
|
34
34
|
export const put = fetcher("PUT");
|
|
35
35
|
export const post = fetcher("POST");
|