import * as _techmely_types from '@techmely/types'; import { StringEnum, ComputeRange, CamelToSnakeNested, NodeEnv, NullList, EntityId, UnDef, Entity, MergeDeep, Records } from '@techmely/types'; export { isStream } from './isStream/index.js'; import 'node:stream'; type RopeSequenceCallback = (elt: T, index: number) => boolean | VoidFunction; declare class RopeSequence { static empty: RopeSequence; values: any; static from(values: readonly T[] | RopeSequence): RopeSequence; leafAppend(other: Leaf): RopeSequence | Leaf | undefined; leafPrepend(other: any): RopeSequence | Leaf | undefined; sliceInner(from: number, to: number): Leaf; getInner(index: number): T | undefined; forEachInner(f: RopeSequenceCallback, from: any, to: any, start: any): void; forEachInvertedInner(f: RopeSequenceCallback, from: any, to: any, start: any): void; append(other: RopeSequence | Leaf | readonly T[]): RopeSequence | Leaf; prepend(other: RopeSequence | readonly T[]): RopeSequence | Leaf; appendInner(other: Leaf): Append | Leaf; slice(from?: number, to?: number): RopeSequence | Leaf; get(i: number): T | undefined; forEach(f: (elt: T, index: number) => boolean | VoidFunction, from?: number, to?: number): void; map(f: RopeSequenceCallback, from?: number, to?: number): U[]; set length(v: number); get length(): number; } declare const GOOD_LEAF_SIZE = 200; declare class Leaf extends RopeSequence { values: any; constructor(values: any); flatten(): any; sliceInner(from: number, to: number): Leaf; getInner(i: number): any; forEachInner(f: RopeSequenceCallback, from: number, to: number, start: number): false | undefined; forEachInvertedInner(f: RopeSequenceCallback, from: number, to: number, start: number): false | undefined; leafAppend(other: Leaf): Leaf | undefined; leafPrepend(other: Leaf): Leaf | undefined; set length(v: number); get length(): number; get depth(): number; } declare class Append extends RopeSequence { left: Leaf; right: Leaf; depth: number; constructor(left: Leaf, right: Leaf); flatten(): any; getInner(i: number): T | undefined; forEachInner(f: RopeSequenceCallback, from: number, to: number, start: number): false | undefined; forEachInvertedInner(f: RopeSequenceCallback, from: number, to: number, start: number): false | undefined; sliceInner(from: number, to: number): any; leafAppend(other: Leaf): Append | undefined; leafPrepend(other: Leaf): Append | undefined; appendInner(other: Leaf): any; } declare function $(tag: StringEnum, _targer?: Element): HTMLElementTagNameMap[K] | null; declare function $$(tag: StringEnum, _targer?: Element): NodeListOf | null; declare function alphaHex(hex: string, alpha: ComputeRange[number]): string; type MAXIMUM_ALLOWED_BOUNDARY$1 = 101; declare function createCachedImport(name: string, imp: () => Promise): () => T | Promise; declare function cacheStringFunction string>(fn: T): T; declare function calculateFrequencies(arr: T[]): {}; declare function calculateScrollPercentage(): number; type MaybeReturnType = T extends (...args: any) => any ? ReturnType : T; declare function callOrReturn(value: T, context?: any, ...props: any[]): MaybeReturnType; declare const camel2snake: (str: string) => string; declare function camel2SnakeObject(obj: T): CamelToSnakeNested; declare const camelize: (str: string) => string; declare const cancelIdleCallback: ((handle: number) => void) & typeof globalThis.cancelIdleCallback; declare const capitalizeFirst: (value: string) => string; declare function chromeVersion(): number; declare function chunk(array: readonly T[], size?: number): T[][]; declare function clamp(n: number, min: number, max: number): number; type ResponseTime = { seconds: number; milliseconds: number; nanoseconds: number | bigint; }; declare function convertHrTime(hrtime: bigint): ResponseTime; interface CookieSerializeOptions { domain?: string; encode?(value: string): string; expires?: Date; httpOnly?: boolean; maxAge?: number; path?: string; priority?: "Low" | "Medium" | "High"; sameSite?: true | false | "lax" | "strict" | "none"; secure?: boolean; } interface CookieParseOptions { decode?(value: string): string; } declare function parseCookie(str: string, options?: CookieParseOptions): Record; declare function serializeCookie(name: string, value: string, options?: CookieSerializeOptions): string; declare const listenCookieChange: (callback: ({ oldCookie, newCookie }: any) => void, interval?: number) => void; declare class CookieService { nodeEnv: NodeEnv; env: string; domain: string; tokenName: string; constructor(nodeEnv: NodeEnv, env: string, cookieDomain: string); get(name: string, options?: CookieParseOptions): string | undefined; set(key: string, value: string, options?: CookieSerializeOptions): void; setToken(token: string): void; getToken(): string | undefined; clearToken(): void; } declare function createElement(tag: StringEnum | HTMLElement, ...children: any[]): HTMLElement; interface CreateStyleTagOptions extends Record { id: string; } declare function createStyleTag(style: string, options: CreateStyleTagOptions): HTMLStyleElement; declare function cutString(value: string, limit: number): string | undefined; declare function debounce void>(func: Func, delay: number, immediate?: boolean): Func; type DelayOptions$1 = { signal?: AbortController["signal"] | null; }; declare function delaySignal(ms: number, { signal }: DelayOptions$1): Promise; declare function deleteProps(obj: Record, propOrProps: string | string[]): Record; declare function downloadByData(data: BlobPart, filename: string, mime?: string, bom?: BlobPart): void; type EventType = string | symbol; type Handler = (event: T) => void; type WildcardHandler> = (type: keyof T, event: T[keyof T]) => void; type EventHandlerList = Handler[]; type WildCardEventHandlerList> = WildcardHandler[]; type EventHandlerMap> = Map | WildCardEventHandlerList>; interface Emitter> { events: EventHandlerMap; on(type: Key, handler: Handler): void; on(type: "*", handler: WildcardHandler): void; off(type: Key, handler?: Handler): void; off(type: "*", handler: WildcardHandler): void; emit(type: Key, event: Events[Key]): void; emit(type: undefined extends Events[Key] ? Key : never): void; } declare function emitter>(all?: EventHandlerMap): Emitter; type EnvObject = Record; declare function envShims(): EnvObject; declare function escapeRegExp(val: string): string; declare function filterArrays(arr1: A[], arr2: B[], filterCondition: (a: A, b: B) => boolean): A[]; declare function findDuplicates(items: T[]): T[]; declare function findFirstDefined(...args: (T | undefined)[]): (T & ({} | null)) | undefined; declare function findLastIndex(array: T[], predicate: (value: T, index: number, obj: T[]) => boolean): number; declare function firstUniqueArr(array: (string | number)[]): string | number | undefined; declare function firstUniqueChar(value: string): string | undefined; declare function flattenObject(obj: Record, prefix?: string, result?: Record): Record; interface FormatBytesOptions { numberOfDecimals: number; } declare const formatBytes: (bytes: number, options?: Partial) => string; declare function formatLot10Volume(volume: NullList, precision?: number, defaultValue?: UnDef): EntityId; declare function formatNumber(num: NullList, precision?: number, defaultValue?: UnDef): EntityId; declare function freezeMainThread(duration: number): void; declare function fromStringToPrimitives(value: any): any; declare function requestFullscreen(mode?: boolean, el?: string): void; declare function generateSample(arr: T[], count: number): T[]; declare function get(from: any, selector: string): any; declare function getQuarter(d?: Date): number; declare function getRandomInt(min: number, max: number): number; declare function getRandomIntInclusive(min: number, max: number): number; declare function getRandomString(length: number, alphanumeric?: "a" | "n"): string; declare function getStrokeRadius(size: number, thinning: number, easing: (t: number) => number, pressure?: number): number; declare const getEnvVar: (variableName: string, defaultValue?: any) => any; declare function groupBy(list: V[], keyGetter: (input: V) => K): Map; declare function hasDuplicates(arr: T[]): boolean; declare function haveSameElement(arr1: T1[], arr2: T2[]): boolean; declare const hyphenate: (str: string) => string; declare function intToBuffer(integer: number | bigint): Buffer; declare function intToHex(integer: number | bigint): string; declare function invariant(condition: any, message?: string | (() => string)): asserts condition; declare function invariant(condition: any, exception?: any): asserts condition; declare function isAndroid(): boolean; declare function isAppleDevice(): boolean; declare function isArray(val: any): val is T[]; declare function isBase64(base: string): boolean; declare function isBoolean(val: any): val is boolean; declare const botPatterns: string[]; declare const botFullPattern = " daum[ /]| deusu/| yadirectfetcher|(?:^| )site|(?:^|[^g])news|(? boolean; declare function createIsBotFromList(list: string[]): (userAgent?: string | null) => boolean; declare function isBotMatch(userAgent?: string | null): string | null; declare function isBotMatches(userAgent?: string | null): string[]; declare function isBotPattern(userAgent?: string | null): string | null; declare function isBotPatterns(userAgent?: string | null): string[]; declare function isBrowser(): boolean; declare function isChrome(): boolean; declare global { interface Window { chrome: any; } } declare function isIOSChrome(): false | RegExpMatchArray | null; declare function isCrawler(): boolean; declare function isDate(val: unknown): val is Date; declare function isDeepEqual(obj1: any, obj2: any): boolean; declare function isDefined(val?: T): val is T; declare function isDistinctArray(arr: T[]): boolean; declare function isEdgeBrowser(): boolean; declare function isEmpties(...args: any[]): boolean; declare function isEmpty(val: T): boolean; type EmptyArray = readonly [T, ...ReadonlyArray]; declare function isEmptyArr(array: ReadonlyArray | undefined): array is EmptyArray; declare function isFunction(val: any): val is Function; declare function isGecko(): boolean; declare const hexColor: RegExp; declare function isHex(hex: string): boolean; declare function isIOS(): boolean; declare function isISOString(val: string): boolean; declare function isISOStringWithTimezone(val: string): boolean; declare function isKeyOf(obj: T, k: keyof any): k is keyof T; declare function isLinux(): boolean; declare function isMacOS(): boolean; declare function isMobile(): boolean | undefined; declare function isNodeProd(): boolean; declare function isNodeTest(): boolean; declare function isNotEmpties(...args: any[]): boolean; declare function isNotEmpty(val: T): boolean; declare function isNotNull(v: T | null): v is Exclude; declare function isNotNullish(v: T | null | undefined): v is NonNullable; declare function isNullOrUndefined(value: unknown): value is undefined | null; declare function isNumber(val: any): val is number; declare function isObject(val: unknown): val is Record; declare function isOpera(): boolean; declare global { interface Window { opr: any; } } declare function isPlainObject(value: any): boolean; declare function getTag(value: any): string; declare function isPngImage(buffer: Buffer | Uint8Array): boolean; declare function isPrefersReducedMotion(): boolean | undefined; type Primitives = { value: string | number | boolean | Date | null; }; declare function isPrimitive(value: unknown): value is Primitives; declare function isPromise(val: unknown): val is Promise; declare function isRegExp(value: any): value is RegExp; declare function isSafari(): boolean; declare function isSameDay(date1?: Date, date2?: Date): boolean; declare function isSameMonth(date1?: Date, date2?: Date): boolean; declare function isServer(): boolean; declare function isSet(val: unknown): val is Set; declare function isSlowConnection(): boolean | undefined; declare global { interface Navigator { connection: { downlink: number; saveData: boolean; effectiveType: string; rtt: number; onchange?: (data: any) => void; }; } } declare function isString(val: unknown): val is string; declare function isSupportsAbortController(): boolean; declare function isSupportsFormData(): boolean; declare function isSupportsRequestStreams(): boolean; declare function isSupportsResponseStreams(): boolean; interface JsonLdProps { type?: string; scriptId?: string; [key: string]: any; } type JsonLdProvider = { type?: "Organization" | "Person"; name: string; url?: string; }; type JsonLdArticleAuthor = { name: string; type?: string; url?: string; }; interface NewsArticleJsonLd extends JsonLdProps { scriptId?: string; url: string; title: string; images: ReadonlyArray; section: string; keywords?: string; dateCreated?: string; datePublished: string; dateModified?: string; authorName: string | string[]; description: string; body: string; publisherName: string; publisherLogo: string; } declare function getNewsArticleJsonLd({ scriptId, type, keyOverride, url, title, images, section, dateCreated, datePublished, dateModified, authorName, publisherName, publisherLogo, body, ...rest }: NewsArticleJsonLd): string; type JsonLdBlogPostingProps = { canonical: string; title: string; description: string; thumbnail: string; datePublished: string; dateModified: string; author: string | string[] | JsonLdArticleAuthor | JsonLdArticleAuthor[]; publisher: { name?: string; logo?: string; }; image?: string; }; declare function getBlogAuthorJsonLd(props: JsonLdBlogPostingProps): string; interface ItemListElementsJsonLd { item: string; name: string; position: number; } declare function setItemListElementsJson(items: ItemListElementsJsonLd[]): { "@type": string; position: number; item: { "@id": string; name: string; }; }[] | undefined; declare function getBreadcrumbJsonLd(items: ItemListElementsJsonLd[]): string; declare function getCourseJsonLd(name: string, provider: JsonLdProvider, props?: any): string; declare function setAuthorJsonLd(author: string | string[] | JsonLdArticleAuthor | JsonLdArticleAuthor[]): { "@type": string; name: string; url?: undefined; } | { "@type": string; name: string; url: string | undefined; } | ({ "@type": string; name: string; url?: undefined; } | { "@type": string; name: string; url: string | undefined; })[]; declare function setPublisherJsonLd(name?: string, logo?: string): { "@type": string; name: string | undefined; logo: { "@type": string; url: string | undefined; }; } | undefined; declare function setProvider(provider: JsonLdProvider): { "@type": "Organization" | "Person"; name: string; sameAs: string | undefined; } | undefined; declare function toJsonLd(type: string, jsonLd: any): string; declare function isSymbol(val: unknown): val is symbol; declare function isToday(date: Date): boolean; declare function isUndefined(val?: T): val is T; declare function isWebkit(): boolean; declare function isWindows(): boolean; declare function kebabize(value: string): string; declare function lerp(y1: number, y2: number, mu: number): number; declare function listify, T = any>(obj: O, mapFn: (key: string, value: Entity) => any): T[]; declare const MIME_TYPES: Record; declare function lookupMineType(extention: string): string | undefined; declare function mapObject(obj: Record, fn: (key: K, value: V) => [NK, NV] | undefined): Record; declare function mask(cc: number | string, num?: number, mask?: string): string; declare function mergeDeep, S extends Record>(target: T, ...sources: S[]): MergeDeep; declare function minMax(value?: number, min?: number, max?: number): number; declare class MutexLock { #private; lock(): PromiseLike<() => void>; dispatch(fn: () => PromiseLike): Promise; } declare function nextEvent(element: HTMLElement, eventName: string): Promise; declare function nextFrame(): Promise; declare function nextIdle(): typeof setTimeout | Promise; declare const noop: () => void; declare function normalize(array: T[], key: keyof T): Record; declare function checkBoundaryPrecision(num: number): void; declare function enableBoundaryCheckingPrecision(flag?: boolean): void; declare function createOperationPrecision(operation: (n1: EntityId, n2: EntityId) => number): (...nums: EntityId[]) => number; declare function digitLengthPrecision(num: EntityId): number; declare const dividePrecision: (...nums: _techmely_types.EntityId[]) => number; declare function float2FixedPrecision(num: EntityId): number; declare const minusPrecision: (...nums: _techmely_types.EntityId[]) => number; declare const plusPrecision: (...nums: _techmely_types.EntityId[]) => number; declare function roundPrecision(num: EntityId, decimal: number): number; declare function stripPrecision(num: EntityId, precision?: number): number; declare const timesPrecision: (...nums: _techmely_types.EntityId[]) => number; declare function objectEntries(obj: T): [keyof T, T[keyof T]][]; declare function objectKeys(obj: T): Array; declare function onClickOutside(element: HTMLElement, callback: CallableFunction): void; declare function onScrollStop(callback: CallableFunction, timeout?: number): void; type OrderMapContent = string | T; type MapLike = Record | OrderedMap; declare class OrderedMap { #private; content: OrderMapContent[]; private constructor(); static from(value: MapLike): OrderedMap; get size(): number; get(key: OrderMapContent): OrderMapContent | undefined; update(key: string, value: T, newKey?: string): OrderedMap; remove(key: OrderMapContent): OrderedMap; addToStart(key: OrderMapContent, value: T): OrderedMap; addToEnd(key: OrderMapContent, value: T): OrderedMap; addBefore(place: string, key: OrderMapContent, value: T): OrderedMap; forEach(fn: (key: OrderMapContent, value: OrderMapContent) => any): void; prepend(map: MapLike): OrderedMap; append(map: MapLike): OrderedMap; subtract(map: MapLike): OrderedMap; toObject(): Record; } declare function parseQueryString(url: string): Record; declare function partition(arr: T[], fn: (val: T, index: number, arr: T[]) => boolean): IterableIterator; declare const pascalToKebabCase: (p: string) => string; declare function ranking(arr: T[], compFn: (a: T, b: T) => boolean): number[]; declare function removeWhitespace(value: string): string; declare const runAsync: (fn: () => void) => Promise; declare function scrollToTop(): void; interface Semaphore { acquire(): Promise; release(): void; size(): number; } declare const getSemaphore: (key?: any, concurrency?: number) => Semaphore; declare function stringifyQueryObject(queryParameters: Record): string; declare function throttle void>(func: F, limit: number): F; declare function toISOStringTimezone(date: Date): string; declare function toNumber(value: string): number | string; declare function truncate(str: string, limit: number, text?: string): string; declare function useObserverElement(): (element: Element, callback: IntersectionObserverCallback) => () => void; declare function webkitVersion(): number; declare class PCancelable extends Promise { #private; static fn(userFn: (onCancel: OnCancelFunction) => PromiseLike): () => PCancelable; static fn(userFn: (argument1: Agument1Type, onCancel: OnCancelFunction) => PromiseLike): (argument1: Agument1Type) => PCancelable; static fn(userFn: (argument1: Agument1Type, argument2: Agument2Type, onCancel: OnCancelFunction) => PromiseLike): (argument1: Agument1Type, argument2: Agument2Type) => PCancelable; static fn(userFn: (argument1: Agument1Type, argument2: Agument2Type, argument3: Agument3Type, onCancel: OnCancelFunction) => PromiseLike): (argument1: Agument1Type, argument2: Agument2Type, argument3: Agument3Type) => PCancelable; static fn(userFn: (argument1: Agument1Type, argument2: Agument2Type, argument3: Agument3Type, argument4: Agument4Type, onCancel: OnCancelFunction) => PromiseLike): (argument1: Agument1Type, argument2: Agument2Type, argument3: Agument3Type, argument4: Agument4Type) => PCancelable; static fn(userFn: (argument1: Agument1Type, argument2: Agument2Type, argument3: Agument3Type, argument4: Agument4Type, argument5: Agument5Type, onCancel: OnCancelFunction) => PromiseLike): (argument1: Agument1Type, argument2: Agument2Type, argument3: Agument3Type, argument4: Agument4Type, argument5: Agument5Type) => PCancelable; static fn(userFn: (_arguments: unknown[]) => PromiseLike): (_arguments: unknown[]) => PCancelable; constructor(executor: Executor); then(onFulfilled: any, onRejected: any): Promise; catch(onRejected: any): Promise; finally(onFinally: any): Promise; cancel(reason: any): void; get isCanceled(): boolean; } interface OnCancelFunction { (cancelHandler: () => void): void; shouldReject: boolean; } type Executor = (resolve: (value?: T | PromiseLike) => void, reject: (reason?: unknown) => void, onCancel: OnCancelFunction) => void; declare class PDefer { placeholder: string; } declare function delay(milliseconds: number, options?: DelayOptions): Promise; declare function createDelay(milliseconds: number, { value, signal }?: DelayOptions): Promise; declare function rangeDelay(minimum: number, maximum: number, options?: DelayOptions): Promise; declare function clearDelay(promise: Promise): void; type DelayOptions = { value?: T; signal?: AbortSignal; }; declare class PQueue { placeholder: string; } declare class PTimeOut { placeholder: string; } type MAXIMUM_ALLOWED_BOUNDARY = 101; declare function percentToHex(percent: ComputeRange[number]): string; declare function pick(state: Records, paths: string | string[]): Records; interface Process extends Partial> { env: EnvObject; versions: Record; } declare const globProcess: Process; declare const emailRegex: RegExp; declare const isValidEmail: (email: string) => boolean; declare const vietnamPhoneRegex: RegExp; declare const isValidVnPhone: (phone: string) => boolean; declare const urlRegex: RegExp; declare const isValidUrl: (path: string) => boolean; declare const multilineCommentsRegex: RegExp; declare const singlelineCommentsRegex: RegExp; declare const escapedSpaceCharactersRegex: RegExp; declare function remove(arr: T[], el: T): void; declare function removeEmptyObj(obj: any): { [k: string]: unknown; }; declare function removeUndefObj>(obj: T): T; declare const requestIdleCallback: ((callback: IdleRequestCallback, options?: IdleRequestOptions) => number) & typeof globalThis.requestIdleCallback; declare function shuffle(array: T[]): T[]; declare function singleton(name: string, valueFactory: () => Value): Value; declare global { var __singletons: Record; } declare function sleep(ms: number): Promise; declare function slugify(text: string): string; declare const snake2camel: (str: string) => string; declare enum SortDirection { ASC = "ASC", DESC = "DESC" } declare function sortByDate(a: T, b: T, key: keyof T, direction?: SortDirection): 0 | 1 | -1; type SortOptions = { locale?: string; shouldIgnoreZero?: boolean; }; declare function sortData(a: unknown, b: unknown, direction?: SortDirection | null, options?: SortOptions): number; declare function stopAnimations(el: HTMLElement): Promise; declare function suffixAmPm(h: number): string; declare function sum(...args: number[] | number[][]): number; declare function take(array: readonly T[], limit: number): T[]; declare function timeSpan(): { (): number; toRounded(): number; toSeconds(): number; toNanoseconds(): bigint; }; declare function toBoolean(val: boolean | string | undefined): boolean; declare function toPointsArray(points: (T | K)[]): number[][]; declare function toggleClass(dom: HTMLElement, cls: string, on?: boolean): void; declare function transitionEnd(element: HTMLElement): Promise; declare function unique(array: readonly T[]): T[]; declare function uniqueObj(items: readonly T[], uniqueKey: keyof T): T[]; export { $, $$, type CookieParseOptions, type CookieSerializeOptions, CookieService, type DelayOptions, type Emitter, type EnvObject, type EventHandlerList, type EventHandlerMap, type EventType, GOOD_LEAF_SIZE, type Handler, type ItemListElementsJsonLd, type JsonLdArticleAuthor, type JsonLdBlogPostingProps, type JsonLdProps, type JsonLdProvider, MIME_TYPES, type MapLike, type MaybeReturnType, MutexLock, type OnCancelFunction, OrderedMap, PCancelable, PDefer, PQueue, PTimeOut, type Primitives, type Process, type ResponseTime, RopeSequence, type RopeSequenceCallback, SortDirection, type WildCardEventHandlerList, type WildcardHandler, alphaHex, botFullPattern, botPatterns, botRegPattern, cacheStringFunction, calculateFrequencies, calculateScrollPercentage, callOrReturn, camel2SnakeObject, camel2snake, camelize, cancelIdleCallback, capitalizeFirst, checkBoundaryPrecision, chromeVersion, chunk, clamp, clearDelay, convertHrTime, createCachedImport, createDelay, createElement, createIsBot, createIsBotFromList, createOperationPrecision, createStyleTag, cutString, debounce, delay, delaySignal, deleteProps, digitLengthPrecision, dividePrecision, downloadByData, emailRegex, emitter, enableBoundaryCheckingPrecision, envShims, escapeRegExp, escapedSpaceCharactersRegex, filterArrays, findDuplicates, findFirstDefined, findLastIndex, firstUniqueArr, firstUniqueChar, flattenObject, float2FixedPrecision, formatBytes, formatLot10Volume, formatNumber, freezeMainThread, fromStringToPrimitives, generateSample, get, getBlogAuthorJsonLd, getBreadcrumbJsonLd, getCourseJsonLd, getEnvVar, getNewsArticleJsonLd, getQuarter, getRandomInt, getRandomIntInclusive, getRandomString, getSemaphore, getStrokeRadius, getTag, globProcess, groupBy, hasDuplicates, haveSameElement, hexColor, hyphenate, intToBuffer, intToHex, invariant, isAndroid, isAppleDevice, isArray, isBase64, isBoolean, isBot, isBotMatch, isBotMatches, isBotNaive, isBotPattern, isBotPatterns, isBrowser, isChrome, isCrawler, isDate, isDeepEqual, isDefined, isDistinctArray, isEdgeBrowser, isEmpties, isEmpty, isEmptyArr, isFunction, isGecko, isHex, isIOS, isIOSChrome, isISOString, isISOStringWithTimezone, isKeyOf, isLinux, isMacOS, isMobile, isNodeProd, isNodeTest, isNotEmpties, isNotEmpty, isNotNull, isNotNullish, isNullOrUndefined, isNumber, isObject, isOpera, isPlainObject, isPngImage, isPrefersReducedMotion, isPrimitive, isPromise, isRegExp, isSafari, isSameDay, isSameMonth, isServer, isSet, isSlowConnection, isString, isSupportsAbortController, isSupportsFormData, isSupportsRequestStreams, isSupportsResponseStreams, isSymbol, isToday, isUndefined, isValidEmail, isValidUrl, isValidVnPhone, isWebkit, isWindows, kebabize, lerp, listenCookieChange, listify, lookupMineType, mapObject, mask, mergeDeep, minMax, minusPrecision, multilineCommentsRegex, nextEvent, nextFrame, nextIdle, noop, normalize, objectEntries, objectKeys, onClickOutside, onScrollStop, parseCookie, parseQueryString, partition, pascalToKebabCase, percentToHex, pick, plusPrecision, rangeDelay, ranking, remove, removeEmptyObj, removeUndefObj, removeWhitespace, requestFullscreen, requestIdleCallback, roundPrecision, runAsync, scrollToTop, serializeCookie, setAuthorJsonLd, setItemListElementsJson, setProvider, setPublisherJsonLd, shuffle, singlelineCommentsRegex, singleton, sleep, slugify, snake2camel, sortByDate, sortData, stopAnimations, stringifyQueryObject, stripPrecision, suffixAmPm, sum, take, throttle, timeSpan, timesPrecision, toBoolean, toISOStringTimezone, toJsonLd, toNumber, toPointsArray, toggleClass, transitionEnd, truncate, unique, uniqueObj, urlRegex, useObserverElement, vietnamPhoneRegex, webkitVersion };