upload, string extensions, lgres

This commit is contained in:
2023-03-30 12:39:26 +08:00
parent 1d636cdc79
commit f5bc42fa20
11 changed files with 323 additions and 33 deletions

View File

@ -1,10 +1,20 @@
import { getCookie, setCookie, deleteCookie } from "./utility/cookie";
import { get, post } from "./utility/request";
import { init, r, lang } from "./utility/lgres";
import { get, post, upload } from "./utility/request";
import { nullOrEmpty, contains, endsWith, padStart } from "./utility/strings";
export {
getCookie,
setCookie,
deleteCookie,
init,
r,
lang,
get,
post
post,
upload,
nullOrEmpty,
contains,
endsWith,
padStart
}