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, formatUrl, escapeHtml } 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 debounce(method, delay = 100, context = g, ...args) { if (method == null) { return; } method.tiid && clearTimeout(method.tiid); method.tiid = setTimeout(() => method.apply(context, args), delay); } function truncate(v) { return (v > 0 ? Math.floor : Math.ceil)(v); } function distinct(array, key, filter) { const dict = Object.create(null); for (let item of array) { const v = typeof filter === 'function' ? filter(item) : item[key]; const val = v?.value ?? v; if (!Object.prototype.hasOwnProperty.call(dict, val)) { dict[val] = v; } } return Object.values(dict); } 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, formatUrl, escapeHtml, // variables g as global, isPositive, isMobile, // functions throttle, debounce, truncate, distinct, isEmail, isPhone }