69 lines
1.4 KiB
JavaScript
69 lines
1.4 KiB
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;
|
|
}
|
|
|
|
function isMobile() {
|
|
return /mobile/i.test(navigator.userAgent);
|
|
}
|
|
|
|
function throttle(method, delay = 100, context = g, ...args) {
|
|
if (method == null) {
|
|
return;
|
|
}
|
|
method.tiid && clearTimeout(method.tiid);
|
|
const current = new Date();
|
|
if (method.tdate == null || current - method.tdate > delay) {
|
|
method.apply(context, args);
|
|
method.tdate = current;
|
|
} else {
|
|
method.tiid = setTimeout(() => method.apply(context, args), delay);
|
|
}
|
|
}
|
|
|
|
function truncate(v) {
|
|
return (v > 0 ? Math.floor : Math.ceil)(v);
|
|
}
|
|
|
|
function isEmail(text) {
|
|
return /^\w[-\w.+]*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/.test(text);
|
|
}
|
|
|
|
function isPhone(text) {
|
|
return /^[1-9]\d{9,}$/.test(text);
|
|
}
|
|
|
|
export {
|
|
// cookie
|
|
getCookie,
|
|
setCookie,
|
|
deleteCookie,
|
|
// lgres
|
|
init,
|
|
r,
|
|
lang,
|
|
// request
|
|
get,
|
|
post,
|
|
upload,
|
|
// strings
|
|
nullOrEmpty,
|
|
contains,
|
|
endsWith,
|
|
padStart,
|
|
// variables
|
|
g as global,
|
|
isPositive,
|
|
isMobile,
|
|
// functions
|
|
throttle,
|
|
truncate,
|
|
isEmail,
|
|
isPhone
|
|
} |