33 lines
659 B
JavaScript
33 lines
659 B
JavaScript
import { getCookie, setCookie, deleteCookie } from "./utility/cookie";
|
|
import { init, r, lang } from "./utility/lgres";
|
|
import { get, post, upload } from "./utility/request";
|
|
import { nullOrEmpty, contains, endsWith, padStart } from "./utility/strings";
|
|
|
|
let g = typeof globalThis !== 'undefined' ? globalThis : self;
|
|
|
|
function isPositive(n) {
|
|
return !isNaN(n) && n > 0;
|
|
}
|
|
|
|
export {
|
|
// cookie
|
|
getCookie,
|
|
setCookie,
|
|
deleteCookie,
|
|
// lgres
|
|
init,
|
|
r,
|
|
lang,
|
|
// request
|
|
get,
|
|
post,
|
|
upload,
|
|
// strings
|
|
nullOrEmpty,
|
|
contains,
|
|
endsWith,
|
|
padStart,
|
|
// variables
|
|
g as global,
|
|
isPositive
|
|
} |