web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

commit a28190f04989014d85795b2ac751fb3289bfa248
parent 14f7632c8534be78e7728b72b1ca26d3e831b6e0
Author: triesap <137732411+triesap@users.noreply.github.com>
Date:   Wed,  9 Apr 2025 00:57:02 +0000

utils: edit http utils

Diffstat:
Mutils/src/http.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils/src/http.ts b/utils/src/http.ts @@ -68,7 +68,7 @@ export const http_fetch_opts = (opts: IHttpOpts): { url: string; options: Reques } }; -export const http_parse_response = async (res: Response): Promise<Promise<IHttpResponse>> => { +export const lib_http_parse_response = async (res: Response): Promise<Promise<IHttpResponse>> => { let data: any = null; try { const res_json = await res.json();