@byloth/core 1.3.3 → 1.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/core.js
CHANGED
|
@@ -212,7 +212,7 @@ class d {
|
|
|
212
212
|
if (n.has(r))
|
|
213
213
|
[o, c] = n.get(r), o += 1;
|
|
214
214
|
else if (t !== void 0)
|
|
215
|
-
o = 0, c = t;
|
|
215
|
+
o = 0, c = t(r);
|
|
216
216
|
else {
|
|
217
217
|
n.set(r, [0, i]);
|
|
218
218
|
continue;
|
|
@@ -649,7 +649,7 @@ function J(s) {
|
|
|
649
649
|
function V(s) {
|
|
650
650
|
return `${s.charAt(0).toUpperCase()}${s.slice(1)}`;
|
|
651
651
|
}
|
|
652
|
-
const z = "1.3.
|
|
652
|
+
const z = "1.3.4";
|
|
653
653
|
export {
|
|
654
654
|
d as AggregatedIterator,
|
|
655
655
|
_ as Aggregator,
|
package/dist/core.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"core.js","sources":["../src/models/exception.ts","../src/models/smart-iterator.ts","../src/models/aggregators/reduced-iterator.ts","../src/models/aggregators/aggregated-iterator.ts","../src/models/aggregators/index.ts","../src/models/json-storage.ts","../src/models/subscribers.ts","../src/models/promises/deferred-promise.ts","../src/models/promises/smart-promise.ts","../src/utils/random.ts","../src/utils/async.ts","../src/utils/date.ts","../src/utils/dom.ts","../src/utils/iterator.ts","../src/utils/math.ts","../src/utils/string.ts","../src/index.ts"],"sourcesContent":["export default class Exception extends Error\n{\n public static FromUnknown(error: unknown): Exception\n {\n if (error instanceof Exception)\n {\n return error;\n }\n if (error instanceof Error)\n {\n const exc = new Exception(error.message);\n\n exc.stack = error.stack;\n exc.name = error.name;\n\n return exc;\n }\n\n return new Exception(`${error}`);\n }\n\n public constructor(message: string, cause?: unknown, name = \"Exception\")\n {\n super(message);\n\n this.cause = cause;\n this.name = name;\n\n if (cause)\n {\n if (cause instanceof Error)\n {\n this.stack += `\\n\\nCaused by ${cause.stack}`;\n }\n else\n {\n this.stack += `\\n\\nCaused by ${cause}`;\n }\n }\n }\n}\n","import type { GeneratorFunction, Iteratee, Reducer } from \"../types.js\";\n\nexport default class SmartIterator<T, R = void, N = undefined> implements Iterator<T, R, N>\n{\n protected _iterator: Iterator<T, R, N>;\n\n public return?: (value?: R) => IteratorResult<T, R>;\n public throw?: (error?: unknown) => IteratorResult<T, R>;\n\n public constructor(iterable: Iterable<T>);\n public constructor(iterator: Iterator<T, R, N>);\n public constructor(generatorFn: GeneratorFunction<T, R, N>);\n public constructor(argument: Iterable<T> | Iterator<T, R, N> | GeneratorFunction<T, R, N>);\n public constructor(argument: Iterable<T> | Iterator<T, R, N> | GeneratorFunction<T, R, N>)\n {\n if (argument instanceof Function)\n {\n this._iterator = argument();\n }\n else if (Symbol.iterator in argument)\n {\n this._iterator = argument[Symbol.iterator]() as Iterator<T, R, N>;\n }\n else\n {\n this._iterator = argument;\n }\n\n if (this._iterator.return) { this.return = (value?: R) => this._iterator.return!(value); }\n if (this._iterator.throw) { this.throw = (error?: unknown) => this._iterator.throw!(error); }\n }\n\n public every(predicate: Iteratee<T, boolean>): boolean\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n\n if (result.done) { return true; }\n if (!(predicate(result.value, index))) { return false; }\n\n index += 1;\n }\n }\n public some(predicate: Iteratee<T, boolean>): boolean\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n\n if (result.done) { return false; }\n if (predicate(result.value, index)) { return true; }\n\n index += 1;\n }\n }\n\n public filter(predicate: Iteratee<T, boolean>): SmartIterator<T, R>\n {\n const iterator = this._iterator;\n\n return new SmartIterator<T, R>(function* ()\n {\n let index = 0;\n\n while (true)\n {\n const result = iterator.next();\n\n if (result.done) { return result.value; }\n if (predicate(result.value, index)) { yield result.value; }\n\n index += 1;\n }\n });\n }\n public map<V>(iteratee: Iteratee<T, V>): SmartIterator<V, R>\n {\n const iterator = this._iterator;\n\n return new SmartIterator<V, R>(function* ()\n {\n let index = 0;\n\n while (true)\n {\n const result = iterator.next();\n if (result.done) { return result.value; }\n\n yield iteratee(result.value, index);\n\n index += 1;\n }\n });\n }\n public reduce<A>(reducer: Reducer<T, A>, initialValue?: A): A\n {\n let index = 0;\n let accumulator = initialValue;\n if (accumulator === undefined)\n {\n const result = this._iterator.next();\n if (result.done) { throw new TypeError(\"Reduce of empty iterator with no initial value\"); }\n\n accumulator = (result.value as unknown) as A;\n index += 1;\n }\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n if (result.done) { return accumulator; }\n\n accumulator = reducer(accumulator, result.value, index);\n\n index += 1;\n }\n }\n\n public enumerate(): SmartIterator<[number, T], R>\n {\n return this.map((value, index) => [index, value]);\n }\n public unique(): SmartIterator<T, R>\n {\n const iterator = this._iterator;\n\n return new SmartIterator<T, R>(function* ()\n {\n const values = new Set<T>();\n\n while (true)\n {\n const result = iterator.next();\n\n if (result.done) { return result.value; }\n if (values.has(result.value)) { continue; }\n\n values.add(result.value);\n\n yield result.value;\n }\n });\n }\n\n public count(): number\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n if (result.done) { return index; }\n\n index += 1;\n }\n }\n public forEach(iteratee: Iteratee<T>): void\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n if (result.done) { return; }\n\n iteratee(result.value, index);\n\n index += 1;\n }\n }\n\n public next(...values: N extends undefined ? [] : [N]): IteratorResult<T, R>\n {\n return this._iterator.next(...values);\n }\n\n public toArray(): T[]\n {\n return Array.from(this as Iterable<T>);\n }\n\n public [Symbol.iterator](): SmartIterator<T, R, N> { return this; }\n}\n","import SmartIterator from \"../smart-iterator.js\";\n\nimport type { KeyIteratee } from \"./types.js\";\nimport type { GeneratorFunction } from \"../../types.js\";\n\nexport default class ReducedIterator<K extends PropertyKey, T>\n{\n protected _elements: SmartIterator<[K, T]>;\n\n public constructor(iterable: Iterable<[K, T]>);\n public constructor(iterator: Iterator<[K, T]>);\n public constructor(generatorFn: GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>)\n {\n this._elements = new SmartIterator(argument);\n }\n\n public filter(predicate: KeyIteratee<K, T, boolean>): ReducedIterator<K, T>\n {\n const elements = this._elements;\n\n return new ReducedIterator(function* ()\n {\n for (const [index, [key, element]] of elements.enumerate())\n {\n if (predicate(key, element, index))\n {\n yield [key, element];\n }\n }\n });\n }\n public map<V>(iteratee: KeyIteratee<K, T, V>): ReducedIterator<K, V>\n {\n const elements = this._elements;\n\n return new ReducedIterator(function* ()\n {\n for (const [index, [key, element]] of elements.enumerate())\n {\n yield [key, iteratee(key, element, index)];\n }\n });\n }\n\n public toArray(): T[]\n {\n return Array.from(this.toMap().values());\n }\n public toMap(): Map<K, T>\n {\n return new Map(this._elements.toArray());\n }\n public toObject(): Record<K, T>\n {\n return Object.fromEntries(this._elements.toArray()) as Record<K, T>;\n }\n}\n","import ReducedIterator from \"./reduced-iterator.js\";\nimport SmartIterator from \"../smart-iterator.js\";\n\nimport type { KeyIteratee, KeyReducer } from \"./types.js\";\nimport type { GeneratorFunction } from \"../../types.js\";\n\nexport default class AggregatedIterator<K extends PropertyKey, T>\n{\n protected _elements: SmartIterator<[K, T]>;\n\n public constructor(iterable: Iterable<[K, T]>);\n public constructor(iterator: Iterator<[K, T]>);\n public constructor(generatorFn: GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>)\n {\n this._elements = new SmartIterator(argument);\n }\n\n public every(predicate: KeyIteratee<K, T, boolean>): ReducedIterator<K, boolean>\n {\n const indexes = new Map<K, [number, boolean]>();\n\n for (const [key, element] of this._elements)\n {\n const [index, result] = indexes.get(key) ?? [0, true];\n\n if (!(result)) { continue; }\n\n indexes.set(key, [index + 1, predicate(key, element, index)]);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, [_, result]] of indexes)\n {\n yield [key, result];\n }\n });\n }\n public some(predicate: KeyIteratee<K, T, boolean>): ReducedIterator<K, boolean>\n {\n const indexes = new Map<K, [number, boolean]>();\n\n for (const [key, element] of this._elements)\n {\n const [index, result] = indexes.get(key) ?? [0, false];\n\n if (result) { continue; }\n\n indexes.set(key, [index + 1, predicate(key, element, index)]);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, [_, result]] of indexes)\n {\n yield [key, result];\n }\n });\n }\n\n public filter(predicate: KeyIteratee<K, T, boolean>): AggregatedIterator<K, T>\n {\n const elements = this._elements;\n\n return new AggregatedIterator(function* ()\n {\n const indexes = new Map<K, number>();\n\n for (const [key, element] of elements)\n {\n const index = indexes.get(key) ?? 0;\n\n indexes.set(key, index + 1);\n\n if (predicate(key, element, index)) { yield [key, element]; }\n }\n });\n }\n public map<V>(iteratee: KeyIteratee<K, T, V>): AggregatedIterator<K, V>\n {\n const elements = this._elements;\n\n return new AggregatedIterator(function* ()\n {\n const indexes = new Map<K, number>();\n\n for (const [key, element] of elements)\n {\n const index = indexes.get(key) ?? 0;\n\n indexes.set(key, index + 1);\n\n yield [key, iteratee(key, element, index)];\n }\n });\n }\n public reduce<A>(reducer: KeyReducer<K, T, A>, initialValue?: A): ReducedIterator<K, A>\n {\n const accumulators = new Map<K, [number, A]>();\n\n for (const [key, element] of this._elements)\n {\n let index: number;\n let accumulator: A;\n\n if (accumulators.has(key))\n {\n [index, accumulator] = accumulators.get(key)!;\n\n index += 1;\n }\n else if (initialValue !== undefined)\n {\n index = 0;\n accumulator = initialValue;\n }\n else\n {\n accumulators.set(key, [0, (element as unknown) as A]);\n\n continue;\n }\n\n accumulator = reducer(key, accumulator, element, index);\n\n accumulators.set(key, [index, accumulator]);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, [_, accumulator]] of accumulators)\n {\n yield [key, accumulator];\n }\n });\n }\n\n public unique(): AggregatedIterator<K, T>\n {\n const elements = this._elements;\n\n return new AggregatedIterator(function* ()\n {\n const keys = new Map<K, Set<T>>();\n\n for (const [key, element] of elements)\n {\n const values = keys.get(key) ?? new Set<T>();\n\n if (values.has(element)) { continue; }\n\n values.add(element);\n keys.set(key, values);\n\n yield [key, element];\n }\n });\n }\n\n public count(): ReducedIterator<K, number>\n {\n const counters = new Map<K, number>();\n\n for (const [key] of this._elements)\n {\n const count = counters.get(key) ?? 0;\n\n counters.set(key, count + 1);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, count] of counters)\n {\n yield [key, count];\n }\n });\n }\n public first(): ReducedIterator<K, T>\n {\n const firsts = new Map<K, T>();\n\n for (const [key, element] of this._elements)\n {\n if (firsts.has(key)) { continue; }\n\n firsts.set(key, element);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, element] of firsts)\n {\n yield [key, element];\n }\n });\n }\n public last(): ReducedIterator<K, T>\n {\n const lasts = new Map<K, T>();\n\n for (const [key, element] of this._elements)\n {\n lasts.set(key, element);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, element] of lasts)\n {\n yield [key, element];\n }\n });\n }\n\n public toArray(): T[][]\n {\n return Array.from(this.toMap().values());\n }\n public toMap(): Map<K, T[]>\n {\n const groups = new Map<K, T[]>();\n\n for (const [key, element] of this._elements)\n {\n const value = groups.get(key) ?? [];\n\n value.push(element);\n groups.set(key, value);\n }\n\n return groups;\n }\n public toObject(): Record<K, T[]>\n {\n const groups = { } as Record<K, T[]>;\n\n for (const [key, element] of this._elements)\n {\n const value = groups[key] ?? [];\n\n value.push(element);\n groups[key] = value;\n }\n\n return groups;\n }\n}\n","import AggregatedIterator from \"./aggregated-iterator.js\";\nimport ReducedIterator from \"./reduced-iterator.js\";\nimport SmartIterator from \"../smart-iterator.js\";\n\nimport type { GeneratorFunction, Iteratee } from \"../../types.js\";\n\nexport default class Aggregator<T>\n{\n protected _elements: SmartIterator<T>;\n\n public constructor(iterable: Iterable<T>);\n public constructor(iterator: Iterator<T>);\n public constructor(generatorFn: GeneratorFunction<T>);\n public constructor(argument: Iterable<T> | Iterator<T> | GeneratorFunction<T>);\n public constructor(argument: Iterable<T> | Iterator<T> | GeneratorFunction<T>)\n {\n this._elements = new SmartIterator(argument);\n }\n\n public filter(predicate: Iteratee<T, boolean>): Aggregator<T>\n {\n return new Aggregator(this._elements.filter(predicate));\n }\n public map<V>(iteratee: Iteratee<T, V>): Aggregator<V>\n {\n return new Aggregator(this._elements.map(iteratee));\n }\n\n public unique(): Aggregator<T>\n {\n return new Aggregator(this._elements.unique());\n }\n\n public byKey<K extends PropertyKey>(iteratee: Iteratee<T, K>): AggregatedIterator<K, T>\n {\n return new AggregatedIterator(this._elements.map((element, index) =>\n {\n const key = iteratee(element, index);\n\n return [key, element];\n }));\n }\n}\n\nexport { AggregatedIterator, ReducedIterator };\n","/* eslint-disable no-trailing-spaces */\n\n/**\n * A wrapper around the `Storage` API to store and retrieve JSON values.\n *\n * It allows to handle either the `sessionStorage` or the `localStorage`\n * storage at the same time, depending on the required use case.\n */\nexport default class JsonStorage\n{\n protected _preferPersistence: boolean;\n\n protected _volatile: Storage;\n protected _persistent: Storage;\n\n public constructor(preferPersistence = true)\n {\n this._preferPersistence = preferPersistence;\n\n this._volatile = window.sessionStorage;\n this._persistent = window.localStorage;\n }\n\n protected _get<T>(storage: Storage, propertyName: string): T | undefined;\n protected _get<T>(storage: Storage, propertyName: string, defaultValue: T): T;\n protected _get<T>(storage: Storage, propertyName: string, defaultValue?: T): T | undefined;\n protected _get<T>(storage: Storage, propertyName: string, defaultValue?: T): T | undefined\n {\n const propertyValue = storage.getItem(propertyName);\n if (propertyValue)\n {\n try\n {\n return JSON.parse(propertyValue);\n }\n catch (error)\n {\n // eslint-disable-next-line no-console\n console.warn(\n `The \"${propertyValue}\" value for \"${propertyName}\"` +\n \" property cannot be parsed. Clearing the storage...\");\n\n storage.removeItem(propertyName);\n }\n }\n\n return defaultValue;\n }\n protected _set<T>(storage: Storage, propertyName: string, newValue?: T): void\n {\n const encodedValue = JSON.stringify(newValue);\n if (encodedValue)\n {\n storage.setItem(propertyName, encodedValue);\n }\n else\n {\n storage.removeItem(propertyName);\n }\n }\n\n /**\n * Retrieves the value with the specified name from the corresponding storage.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n * @param persistent Whether to use the persistent `localStorage` or the volatile `sessionStorage`.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public get<T>(propertyName: string, defaultValue: undefined, persistent?: boolean): T | undefined;\n public get<T>(propertyName: string, defaultValue: T, persistent?: boolean): T ;\n public get<T>(propertyName: string, defaultValue?: T, persistent?: boolean): T | undefined;\n public get<T>(propertyName: string, defaultValue?: T, persistent = this._preferPersistence): T | undefined\n {\n const storage = persistent ? this._persistent : this._volatile;\n\n return this._get<T>(storage, propertyName, defaultValue);\n }\n /**\n * Retrieves the value with the specified name from the volatile `sessionStorage`.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public recall<T>(propertyName: string): T | undefined;\n public recall<T>(propertyName: string, defaultValue: T): T;\n public recall<T>(propertyName: string, defaultValue?: T): T | undefined;\n public recall<T>(propertyName: string, defaultValue?: T): T | undefined\n {\n return this._get<T>(this._volatile, propertyName, defaultValue);\n }\n /**\n * Retrieves the value with the specified name looking first in the\n * volatile `sessionStorage` and then in the persistent `localStorage`.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public retrieve<T>(propertyName: string): T | undefined;\n public retrieve<T>(propertyName: string, defaultValue: T): T;\n public retrieve<T>(propertyName: string, defaultValue?: T): T | undefined;\n public retrieve<T>(propertyName: string, defaultValue?: T): T | undefined\n {\n return this.recall<T>(propertyName) ?? this.read<T>(propertyName, defaultValue);\n }\n /**\n * Retrieves the value with the specified name from the persistent `localStorage`.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public read<T>(propertyName: string): T | undefined;\n public read<T>(propertyName: string, defaultValue: T): T;\n public read<T>(propertyName: string, defaultValue?: T): T | undefined;\n public read<T>(propertyName: string, defaultValue?: T): T | undefined\n {\n return this._get<T>(this._persistent, propertyName, defaultValue);\n }\n\n /**\n * Checks whether the property with the specified name exists in the corresponding storage.\n *\n * @param propertyName The name of the property to check.\n * @param persistent Whether to use the persistent `localStorage` or the volatile `sessionStorage`.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public has(propertyName: string, persistent?: boolean): boolean\n {\n const storage = persistent ? this._persistent : this._volatile;\n\n return storage.getItem(propertyName) !== null;\n }\n /**\n * Checks whether the property with the specified name exists in the volatile `sessionStorage`.\n *\n * @param propertyName The name of the property to check.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public knows(propertyName: string): boolean\n {\n return this._volatile.getItem(propertyName) !== null;\n }\n /**\n * Checks whether the property with the specified name exists looking first in the\n * volatile `sessionStorage` and then in the persistent `localStorage`.\n *\n * @param propertyName The name of the property to check.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public find(propertyName: string): boolean\n {\n return this.knows(propertyName) ?? this.exists(propertyName);\n }\n /**\n * Checks whether the property with the specified name exists in the persistent `localStorage`.\n *\n * @param propertyName The name of the property to check.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public exists(propertyName: string): boolean\n {\n return this._persistent.getItem(propertyName) !== null;\n }\n\n /**\n * Sets the value with the specified name in the corresponding storage.\n * If the value is `undefined`, the property is removed from the storage.\n *\n * @param propertyName The name of the property to set.\n * @param newValue The new value to set.\n * @param persistent Whether to use the persistent `localStorage` or the volatile `sessionStorage`.\n */\n public set<T>(propertyName: string, newValue?: T, persistent = this._preferPersistence): void\n {\n const storage = persistent ? this._persistent : this._volatile;\n\n this._set<T>(storage, propertyName, newValue);\n }\n /**\n * Sets the value with the specified name in the volatile `sessionStorage`.\n * If the value is `undefined`, the property is removed from the storage.\n *\n * @param propertyName The name of the property to set.\n * @param newValue The new value to set.\n */\n public remember<T>(propertyName: string, newValue?: T): void\n {\n this._set<T>(this._volatile, propertyName, newValue);\n }\n /**\n * Sets the value with the specified name in the persistent `localStorage`.\n * If the value is `undefined`, the property is removed from the storage.\n *\n * @param propertyName The name of the property to set.\n * @param newValue The new value to set.\n */\n public write<T>(propertyName: string, newValue?: T): void\n {\n this._set<T>(this._persistent, propertyName, newValue);\n }\n\n /**\n * Removes the value with the specified name from the volatile `sessionStorage`.\n *\n * @param propertyName The name of the property to remove.\n */\n public forget(propertyName: string): void\n {\n this._volatile.removeItem(propertyName);\n }\n /**\n * Removes the value with the specified name from the persistent `localStorage`.\n *\n * @param propertyName The name of the property to remove.\n */\n public erase(propertyName: string): void\n {\n this._persistent.removeItem(propertyName);\n }\n /**\n * Removes the value with the specified name from all the storages.\n *\n * @param propertyName The name of the property to remove.\n */\n public clear(propertyName: string): void\n {\n this._volatile.removeItem(propertyName);\n this._persistent.removeItem(propertyName);\n }\n}\n","import Exception from \"./exception.js\";\n\nexport default class Subscribers<P extends unknown[] = [], R = void, T extends (...args: P) => R = (...args: P) => R>\n{\n protected _subscribers: T[];\n\n public constructor()\n {\n this._subscribers = [];\n }\n\n public add(subscriber: T): void\n {\n this._subscribers.push(subscriber);\n }\n public remove(subscriber: T): void\n {\n const index = this._subscribers.indexOf(subscriber);\n if (index < 0)\n {\n throw new Exception(\"Unable to remove the requested subscriber. It was not found.\");\n }\n\n this._subscribers.splice(index, 1);\n }\n\n public call(...args: P): R[]\n {\n return this._subscribers\n .slice()\n .map((subscriber) => subscriber(...args));\n }\n}\n","import type {\n PromiseResolver,\n PromiseRejecter,\n FulfilledHandler,\n RejectedHandler,\n PromiseExecutor\n\n} from \"../../types.js\";\n\nexport default class DeferredPromise<T = void, E = unknown, F = T, R = never>\n{\n protected _isPending: boolean;\n protected _isFulfilled: boolean;\n protected _isRejected: boolean;\n\n protected _resolve!: PromiseResolver<T>;\n protected _reject!: PromiseRejecter<E>;\n\n protected _promise: Promise<F | R>;\n\n public constructor(onFulfilled?: FulfilledHandler<T, F> | null, onRejected?: RejectedHandler<E, R> | null)\n {\n this._isPending = true;\n this._isFulfilled = false;\n this._isRejected = false;\n\n let _resolve: PromiseResolver<T>;\n let _reject: PromiseRejecter<E>;\n\n const executor: PromiseExecutor<T, E> = (resolve, reject) =>\n {\n _resolve = resolve;\n _reject = reject;\n };\n\n let _onFulfilled: FulfilledHandler<T, F>;\n if (onFulfilled)\n {\n _onFulfilled = (value) =>\n {\n this._isPending = false;\n this._isFulfilled = true;\n\n return onFulfilled!(value);\n };\n }\n else\n {\n _onFulfilled = (value) =>\n {\n this._isPending = false;\n this._isFulfilled = true;\n\n return (value as unknown) as F;\n };\n }\n\n let _onRejected: RejectedHandler<E, R>;\n if (onRejected)\n {\n _onRejected = (reason) =>\n {\n this._isPending = false;\n this._isRejected = true;\n\n return onRejected!(reason);\n };\n }\n else\n {\n _onRejected = (reason) =>\n {\n this._isPending = false;\n this._isRejected = true;\n\n return (reason as unknown) as R;\n };\n }\n\n this._promise = new Promise<T>(executor)\n .then(_onFulfilled, _onRejected);\n\n this._resolve = _resolve!;\n this._reject = _reject!;\n }\n\n public get isPending(): boolean { return this._isPending; }\n public get isFulfilled(): boolean { return this._isFulfilled; }\n public get isRejected(): boolean { return this._isRejected; }\n\n public get resolve(): PromiseResolver<T> { return this._resolve; }\n public get reject(): PromiseRejecter<E> { return this._reject; }\n\n public then<N = F | R, H = R>(\n onFulfilled?: FulfilledHandler<F | R, N> | null,\n onRejected?: RejectedHandler<R, H> | null): Promise<N | H>\n {\n return this._promise.then(onFulfilled, onRejected);\n }\n public catch<H = R>(onRejected?: RejectedHandler<R, H> | null): Promise<F | R | H>\n {\n return this._promise.catch(onRejected);\n }\n public finally(onFinally?: (() => void) | null): Promise<F | R>\n {\n return this._promise.finally(onFinally);\n }\n\n public watch(promise: Promise<T>): this\n {\n promise.then(this.resolve, this.reject);\n\n return this;\n }\n\n public get [Symbol.toStringTag]() { return \"DeferredPromise\"; }\n}\n","import type { FulfilledHandler, PromiseExecutor, RejectedHandler } from \"../../types.js\";\n\nexport default class SmartPromise<T = void, E = unknown>\n{\n protected _isPending: boolean;\n protected _isFulfilled: boolean;\n protected _isRejected: boolean;\n\n protected _promise: Promise<T | E>;\n\n public constructor(executor: PromiseExecutor<T, E>)\n {\n this._isPending = true;\n this._isFulfilled = false;\n this._isRejected = false;\n\n const _resolve = (result: T): T =>\n {\n this._isPending = false;\n this._isFulfilled = true;\n\n return result;\n };\n const _reject = (reason: E): E =>\n {\n this._isPending = false;\n this._isRejected = true;\n\n return reason;\n };\n\n this._promise = new Promise<T>(executor)\n .then(_resolve, _reject);\n }\n\n public get isPending(): boolean { return this._isPending; }\n public get isFulfilled(): boolean { return this._isFulfilled; }\n public get isRejected(): boolean { return this._isRejected; }\n\n public then<F = T, R = E>(\n onFulfilled?: FulfilledHandler<T | E, F> | null,\n onRejected?: RejectedHandler<E, R> | null): Promise<F | R>\n {\n return this._promise.then(onFulfilled, onRejected);\n }\n public catch<R = E>(onRejected?: RejectedHandler<E, R> | null): Promise<T | E | R>\n {\n return this._promise.catch(onRejected);\n }\n public finally(onFinally?: (() => void) | null): Promise<T | E>\n {\n return this._promise.finally(onFinally);\n }\n\n public get [Symbol.toStringTag]() { return \"SmartPromise\"; }\n}\n","export default class Random\n{\n public static Boolean(ratio: number = 0.5): boolean\n {\n return (Math.random() < ratio);\n }\n\n public static Integer(max: number): number;\n public static Integer(min: number, max: number): number;\n public static Integer(min: number, max?: number): number\n {\n if (max === undefined)\n {\n return Math.floor(Math.random() * min);\n }\n\n return Math.floor(Math.random() * (max - min) + min);\n }\n\n public static Decimal(max: number): number;\n public static Decimal(min: number, max: number): number;\n public static Decimal(min: number, max?: number): number\n {\n if (max === undefined)\n {\n return (Math.random() * min);\n }\n\n return (Math.random() * (max - min) + min);\n }\n\n public static Choice<T>(elements: T[]): T\n {\n return elements[this.Integer(elements.length)];\n }\n\n // eslint-disable-next-line no-useless-constructor\n private constructor() { }\n}\n","export async function delay(milliseconds: number): Promise<void>\n{\n return new Promise<void>((resolve, reject) => setTimeout(resolve, milliseconds));\n}\n\nexport async function nextAnimationFrame(): Promise<void>\n{\n return new Promise<void>((resolve, reject) => requestAnimationFrame(() => resolve()));\n}\n","import { SmartIterator } from \"../models/index.js\";\n\nexport enum DateUnit\n{\n Second = 1000,\n Minute = 60 * Second,\n Hour = 60 * Minute,\n Day = 24 * Hour,\n Week = 7 * Day,\n Month = 30 * Day,\n Year = 365 * Day\n}\n\nexport function dateDifference(start: Date, end: Date, unit = DateUnit.Day): number\n{\n return Math.floor((end.getTime() - start.getTime()) / unit);\n}\n\nexport function dateRange(start: Date, end: Date, offset = DateUnit.Day): SmartIterator<Date>\n{\n return new SmartIterator<Date>(function* ()\n {\n const endTime = end.getTime();\n\n let unixTime: number = start.getTime();\n while (unixTime < endTime)\n {\n yield new Date(unixTime);\n\n unixTime += offset;\n }\n });\n}\n\nexport function dateRound(date: Date, unit = DateUnit.Day): Date\n{\n return new Date(Math.floor(date.getTime() / unit) * unit);\n}\n","export async function loadScript(scriptUrl: string, scriptType = \"text/javascript\"): Promise<void>\n{\n return new Promise<void>((resolve, reject) =>\n {\n const script = document.createElement(\"script\");\n\n script.async = true;\n script.defer = true;\n script.src = scriptUrl;\n script.type = scriptType;\n\n script.onload = () => resolve();\n script.onerror = () => reject();\n\n document.body.appendChild(script);\n });\n}\n","import { SmartIterator } from \"../models/index.js\";\n\nexport function count<T>(elements: Iterable<T>): number\n{\n if (Array.isArray(elements)) { return elements.length; }\n\n let _count = 0;\n for (const _ of elements) { _count += 1; }\n\n return _count;\n}\n\nexport function enumerate<T>(elements: Iterable<T>): SmartIterator<[number, T]>\n{\n return new SmartIterator<[number, T]>(function* ()\n {\n let index = 0;\n\n for (const element of elements)\n {\n yield [index, element];\n\n index += 1;\n }\n });\n}\n\nexport function range(end: number): SmartIterator<number>;\nexport function range(start: number, end: number): SmartIterator<number>;\nexport function range(start: number, end: number, step: number): SmartIterator<number>;\nexport function range(start: number, end?: number, step = 1): SmartIterator<number>\n{\n return new SmartIterator<number>(function* ()\n {\n if (end === undefined)\n {\n end = start;\n start = 0;\n }\n\n if (start > end) { step = step ?? -1; }\n\n for (let index = start; index < end; index += step) { yield index; }\n });\n}\n\nexport function shuffle<T>(iterable: Iterable<T>): T[]\n{\n const array = Array.from(iterable);\n\n for (let index = array.length - 1; index > 0; index -= 1)\n {\n const jndex = Math.floor(Math.random() * (index + 1));\n\n [array[index], array[jndex]] = [array[jndex], array[index]];\n }\n\n return array;\n}\n\nexport function unique<T>(elements: Iterable<T>): SmartIterator<T>\n{\n return new SmartIterator<T>(function* ()\n {\n const values = new Set<T>();\n\n for (const element of elements)\n {\n if (values.has(element)) { continue; }\n\n values.add(element);\n\n yield element;\n }\n });\n}\n\nexport function zip<T, U>(first: Iterable<T>, second: Iterable<U>): SmartIterator<[T, U]>\n{\n return new SmartIterator<[T, U]>(function* ()\n {\n const firstIterator = first[Symbol.iterator]();\n const secondIterator = second[Symbol.iterator]();\n\n while (true)\n {\n const firstResult = firstIterator.next();\n const secondResult = secondIterator.next();\n\n if ((firstResult.done) || (secondResult.done)) { break; }\n\n yield [firstResult.value, secondResult.value];\n }\n });\n}\n","import { zip } from \"./iterator.js\";\n\nexport function average<T extends number>(values: Iterable<T>): number;\nexport function average<T extends number>(values: Iterable<T>, weights: Iterable<number>): number;\nexport function average<T extends number>(values: Iterable<T>, weights?: Iterable<number>): number\n{\n if (weights === undefined)\n {\n let _sum = 0;\n let _count = 0;\n\n for (const value of values)\n {\n _sum += value;\n _count += 1;\n }\n\n return _sum / _count;\n }\n\n let _sum = 0;\n let _count = 0;\n\n for (const [value, weight] of zip(values, weights))\n {\n _sum += value * weight;\n _count += weight;\n }\n\n return _sum / _count;\n}\n\nexport function hash(value: string): number\n{\n let hashedValue = 0;\n for (let index = 0; index < value.length; index += 1)\n {\n const char = value.charCodeAt(index);\n\n hashedValue = ((hashedValue << 5) - hashedValue) + char;\n hashedValue |= 0;\n }\n\n return hashedValue;\n}\n\nexport function sum<T extends number>(values: Iterable<T>): number\n{\n let _sum = 0;\n for (const value of values) { _sum += value; }\n\n return _sum;\n}\n","export function capitalize(value: string): string\n{\n return `${value.charAt(0).toUpperCase()}${value.slice(1)}`;\n}\n","export const VERSION = \"1.3.3\";\n\nexport {\n AggregatedIterator,\n Aggregator,\n DeferredPromise,\n Exception,\n JsonStorage,\n ReducedIterator,\n SmartIterator,\n SmartPromise,\n Subscribers\n\n} from \"./models/index.js\";\n\nexport {\n average,\n capitalize,\n count,\n delay,\n dateDifference,\n dateRange,\n dateRound,\n DateUnit,\n hash,\n loadScript,\n nextAnimationFrame,\n Random,\n range,\n shuffle,\n sum,\n unique,\n zip\n\n} from \"./utils/index.js\";\n\nexport type {\n Constructor,\n FulfilledHandler,\n GeneratorFunction,\n Interval,\n Iteratee,\n MaybePromise,\n PromiseExecutor,\n PromiseRejecter,\n PromiseResolver,\n Reducer,\n RejectedHandler,\n Timeout\n\n} from \"./types.js\";\n"],"names":["Exception","error","exc","message","cause","name","SmartIterator","argument","__publicField","value","predicate","index","result","iterator","iteratee","reducer","initialValue","accumulator","values","ReducedIterator","elements","key","element","AggregatedIterator","indexes","_","accumulators","keys","counters","count","firsts","lasts","groups","Aggregator","JsonStorage","preferPersistence","storage","propertyName","defaultValue","propertyValue","newValue","encodedValue","persistent","Subscribers","subscriber","args","DeferredPromise","onFulfilled","onRejected","_resolve","_reject","executor","resolve","reject","_onFulfilled","_onRejected","reason","onFinally","promise","SmartPromise","Random","ratio","min","max","delay","milliseconds","nextAnimationFrame","DateUnit","dateDifference","start","end","unit","dateRange","offset","endTime","unixTime","dateRound","date","loadScript","scriptUrl","scriptType","script","_count","range","step","shuffle","iterable","array","jndex","unique","zip","first","second","firstIterator","secondIterator","firstResult","secondResult","average","weights","_sum","weight","hash","hashedValue","char","sum","capitalize","VERSION"],"mappings":";;;AAAA,MAAqBA,UAAkB,MACvC;AAAA,EACI,OAAc,YAAYC,GAC1B;AACI,QAAIA,aAAiBD;AAEV,aAAAC;AAEX,QAAIA,aAAiB,OACrB;AACI,YAAMC,IAAM,IAAIF,EAAUC,EAAM,OAAO;AAEvC,aAAAC,EAAI,QAAQD,EAAM,OAClBC,EAAI,OAAOD,EAAM,MAEVC;AAAA,IACX;AAEA,WAAO,IAAIF,EAAU,GAAGC,CAAK,EAAE;AAAA,EACnC;AAAA,EAEO,YAAYE,GAAiBC,GAAiBC,IAAO,aAC5D;AACI,UAAMF,CAAO,GAEb,KAAK,QAAQC,GACb,KAAK,OAAOC,GAERD,MAEIA,aAAiB,QAEjB,KAAK,SAAS;AAAA;AAAA,YAAiBA,EAAM,KAAK,KAI1C,KAAK,SAAS;AAAA;AAAA,YAAiBA,CAAK;AAAA,EAGhD;AACJ;ACtCA,MAAqBE,EACrB;AAAA,EAUW,YAAYC,GACnB;AAVU,IAAAC,EAAA;AAEH,IAAAA,EAAA;AACA,IAAAA,EAAA;AAQH,IAAID,aAAoB,WAEpB,KAAK,YAAYA,MAEZ,OAAO,YAAYA,IAExB,KAAK,YAAYA,EAAS,OAAO,QAAQ,EAAE,IAI3C,KAAK,YAAYA,GAGjB,KAAK,UAAU,WAAU,KAAK,SAAS,CAACE,MAAc,KAAK,UAAU,OAAQA,CAAK,IAClF,KAAK,UAAU,UAAS,KAAK,QAAQ,CAACR,MAAoB,KAAK,UAAU,MAAOA,CAAK;AAAA,EAC7F;AAAA,EAEO,MAAMS,GACb;AACI,QAAIC,IAAQ;AAGZ,eACA;AACU,YAAAC,IAAS,KAAK,UAAU,KAAK;AAEnC,UAAIA,EAAO;AAAe,eAAA;AAC1B,UAAI,CAAEF,EAAUE,EAAO,OAAOD,CAAK;AAAa,eAAA;AAEvC,MAAAA,KAAA;AAAA,IACb;AAAA,EACJ;AAAA,EACO,KAAKD,GACZ;AACI,QAAIC,IAAQ;AAGZ,eACA;AACU,YAAAC,IAAS,KAAK,UAAU,KAAK;AAEnC,UAAIA,EAAO;AAAe,eAAA;AAC1B,UAAIF,EAAUE,EAAO,OAAOD,CAAK;AAAY,eAAA;AAEpC,MAAAA,KAAA;AAAA,IACb;AAAA,EACJ;AAAA,EAEO,OAAOD,GACd;AACI,UAAMG,IAAW,KAAK;AAEf,WAAA,IAAIP,EAAoB,aAC/B;AACI,UAAIK,IAAQ;AAEZ,iBACA;AACU,cAAAC,IAASC,EAAS;AAExB,YAAID,EAAO;AAAQ,iBAAOA,EAAO;AACjC,QAAIF,EAAUE,EAAO,OAAOD,CAAK,MAAK,MAAMC,EAAO,QAE1CD,KAAA;AAAA,MACb;AAAA,IAAA,CACH;AAAA,EACL;AAAA,EACO,IAAOG,GACd;AACI,UAAMD,IAAW,KAAK;AAEf,WAAA,IAAIP,EAAoB,aAC/B;AACI,UAAIK,IAAQ;AAEZ,iBACA;AACU,cAAAC,IAASC,EAAS;AACxB,YAAID,EAAO;AAAQ,iBAAOA,EAAO;AAE3B,cAAAE,EAASF,EAAO,OAAOD,CAAK,GAEzBA,KAAA;AAAA,MACb;AAAA,IAAA,CACH;AAAA,EACL;AAAA,EACO,OAAUI,GAAwBC,GACzC;AACI,QAAIL,IAAQ,GACRM,IAAcD;AAClB,QAAIC,MAAgB,QACpB;AACU,YAAAL,IAAS,KAAK,UAAU,KAAK;AACnC,UAAIA,EAAO;AAAc,cAAA,IAAI,UAAU,gDAAgD;AAEvF,MAAAK,IAAeL,EAAO,OACbD,KAAA;AAAA,IACb;AAGA,eACA;AACU,YAAAC,IAAS,KAAK,UAAU,KAAK;AACnC,UAAIA,EAAO;AAAe,eAAAK;AAE1B,MAAAA,IAAcF,EAAQE,GAAaL,EAAO,OAAOD,CAAK,GAE7CA,KAAA;AAAA,IACb;AAAA,EACJ;AAAA,EAEO,YACP;AACW,WAAA,KAAK,IAAI,CAACF,GAAOE,MAAU,CAACA,GAAOF,CAAK,CAAC;AAAA,EACpD;AAAA,EACO,SACP;AACI,UAAMI,IAAW,KAAK;AAEf,WAAA,IAAIP,EAAoB,aAC/B;AACU,YAAAY,wBAAa;AAEnB,iBACA;AACU,cAAAN,IAASC,EAAS;AAExB,YAAID,EAAO;AAAQ,iBAAOA,EAAO;AACjC,QAAIM,EAAO,IAAIN,EAAO,KAAK,MAEpBM,EAAA,IAAIN,EAAO,KAAK,GAEvB,MAAMA,EAAO;AAAA,MACjB;AAAA,IAAA,CACH;AAAA,EACL;AAAA,EAEO,QACP;AACI,QAAID,IAAQ;AAGZ,eACA;AAEI,UADe,KAAK,UAAU,KAAK,EACxB;AAAe,eAAAA;AAEjB,MAAAA,KAAA;AAAA,IACb;AAAA,EACJ;AAAA,EACO,QAAQG,GACf;AACI,QAAIH,IAAQ;AAGZ,eACA;AACU,YAAAC,IAAS,KAAK,UAAU,KAAK;AACnC,UAAIA,EAAO;AAAQ;AAEV,MAAAE,EAAAF,EAAO,OAAOD,CAAK,GAEnBA,KAAA;AAAA,IACb;AAAA,EACJ;AAAA,EAEO,QAAQO,GACf;AACI,WAAO,KAAK,UAAU,KAAK,GAAGA,CAAM;AAAA,EACxC;AAAA,EAEO,UACP;AACW,WAAA,MAAM,KAAK,IAAmB;AAAA,EACzC;AAAA,EAEA,CAAQ,OAAO,QAAQ,IAA4B;AAAS,WAAA;AAAA,EAAM;AACtE;AC3LA,MAAqBC,EACrB;AAAA,EAOW,YAAYZ,GACnB;AAPU,IAAAC,EAAA;AAQD,SAAA,YAAY,IAAIF,EAAcC,CAAQ;AAAA,EAC/C;AAAA,EAEO,OAAOG,GACd;AACI,UAAMU,IAAW,KAAK;AAEf,WAAA,IAAID,EAAgB,aAC3B;AACe,iBAAA,CAACR,GAAO,CAACU,GAAKC,CAAO,CAAC,KAAKF,EAAS;AAE3C,QAAIV,EAAUW,GAAKC,GAASX,CAAK,MAEvB,MAAA,CAACU,GAAKC,CAAO;AAAA,IAE3B,CACH;AAAA,EACL;AAAA,EACO,IAAOR,GACd;AACI,UAAMM,IAAW,KAAK;AAEf,WAAA,IAAID,EAAgB,aAC3B;AACe,iBAAA,CAACR,GAAO,CAACU,GAAKC,CAAO,CAAC,KAAKF,EAAS;AAE3C,cAAM,CAACC,GAAKP,EAASO,GAAKC,GAASX,CAAK,CAAC;AAAA,IAC7C,CACH;AAAA,EACL;AAAA,EAEO,UACP;AACI,WAAO,MAAM,KAAK,KAAK,MAAM,EAAE,QAAQ;AAAA,EAC3C;AAAA,EACO,QACP;AACI,WAAO,IAAI,IAAI,KAAK,UAAU,QAAS,CAAA;AAAA,EAC3C;AAAA,EACO,WACP;AACI,WAAO,OAAO,YAAY,KAAK,UAAU,QAAS,CAAA;AAAA,EACtD;AACJ;ACpDA,MAAqBY,EACrB;AAAA,EAOW,YAAYhB,GACnB;AAPU,IAAAC,EAAA;AAQD,SAAA,YAAY,IAAIF,EAAcC,CAAQ;AAAA,EAC/C;AAAA,EAEO,MAAMG,GACb;AACU,UAAAc,wBAAc;AAEpB,eAAW,CAACH,GAAKC,CAAO,KAAK,KAAK,WAClC;AACU,YAAA,CAACX,GAAOC,CAAM,IAAIY,EAAQ,IAAIH,CAAG,KAAK,CAAC,GAAG,EAAI;AAEpD,MAAMT,KAEEY,EAAA,IAAIH,GAAK,CAACV,IAAQ,GAAGD,EAAUW,GAAKC,GAASX,CAAK,CAAC,CAAC;AAAA,IAChE;AAEO,WAAA,IAAIQ,EAAgB,aAC3B;AACI,iBAAW,CAACE,GAAK,CAACI,GAAGb,CAAM,CAAC,KAAKY;AAEvB,cAAA,CAACH,GAAKT,CAAM;AAAA,IACtB,CACH;AAAA,EACL;AAAA,EACO,KAAKF,GACZ;AACU,UAAAc,wBAAc;AAEpB,eAAW,CAACH,GAAKC,CAAO,KAAK,KAAK,WAClC;AACU,YAAA,CAACX,GAAOC,CAAM,IAAIY,EAAQ,IAAIH,CAAG,KAAK,CAAC,GAAG,EAAK;AAErD,MAAIT,KAEIY,EAAA,IAAIH,GAAK,CAACV,IAAQ,GAAGD,EAAUW,GAAKC,GAASX,CAAK,CAAC,CAAC;AAAA,IAChE;AAEO,WAAA,IAAIQ,EAAgB,aAC3B;AACI,iBAAW,CAACE,GAAK,CAACI,GAAGb,CAAM,CAAC,KAAKY;AAEvB,cAAA,CAACH,GAAKT,CAAM;AAAA,IACtB,CACH;AAAA,EACL;AAAA,EAEO,OAAOF,GACd;AACI,UAAMU,IAAW,KAAK;AAEf,WAAA,IAAIG,EAAmB,aAC9B;AACU,YAAAC,wBAAc;AAEpB,iBAAW,CAACH,GAAKC,CAAO,KAAKF,GAC7B;AACI,cAAMT,IAAQa,EAAQ,IAAIH,CAAG,KAAK;AAE1B,QAAAG,EAAA,IAAIH,GAAKV,IAAQ,CAAC,GAEtBD,EAAUW,GAAKC,GAASX,CAAK,MAAW,MAAA,CAACU,GAAKC,CAAO;AAAA,MAC7D;AAAA,IAAA,CACH;AAAA,EACL;AAAA,EACO,IAAOR,GACd;AACI,UAAMM,IAAW,KAAK;AAEf,WAAA,IAAIG,EAAmB,aAC9B;AACU,YAAAC,wBAAc;AAEpB,iBAAW,CAACH,GAAKC,CAAO,KAAKF,GAC7B;AACI,cAAMT,IAAQa,EAAQ,IAAIH,CAAG,KAAK;AAE1B,QAAAG,EAAA,IAAIH,GAAKV,IAAQ,CAAC,GAE1B,MAAM,CAACU,GAAKP,EAASO,GAAKC,GAASX,CAAK,CAAC;AAAA,MAC7C;AAAA,IAAA,CACH;AAAA,EACL;AAAA,EACO,OAAUI,GAA8BC,GAC/C;AACU,UAAAU,wBAAmB;AAEzB,eAAW,CAACL,GAAKC,CAAO,KAAK,KAAK,WAClC;AACQ,UAAAX,GACAM;AAEA,UAAAS,EAAa,IAAIL,CAAG;AAEpB,SAACV,GAAOM,CAAW,IAAIS,EAAa,IAAIL,CAAG,GAElCV,KAAA;AAAA,eAEJK,MAAiB;AAEd,QAAAL,IAAA,GACMM,IAAAD;AAAA,WAGlB;AACI,QAAAU,EAAa,IAAIL,GAAK,CAAC,GAAIC,CAAwB,CAAC;AAEpD;AAAA,MACJ;AAEA,MAAAL,IAAcF,EAAQM,GAAKJ,GAAaK,GAASX,CAAK,GAEtDe,EAAa,IAAIL,GAAK,CAACV,GAAOM,CAAW,CAAC;AAAA,IAC9C;AAEO,WAAA,IAAIE,EAAgB,aAC3B;AACI,iBAAW,CAACE,GAAK,CAACI,GAAGR,CAAW,CAAC,KAAKS;AAE5B,cAAA,CAACL,GAAKJ,CAAW;AAAA,IAC3B,CACH;AAAA,EACL;AAAA,EAEO,SACP;AACI,UAAMG,IAAW,KAAK;AAEf,WAAA,IAAIG,EAAmB,aAC9B;AACU,YAAAI,wBAAW;AAEjB,iBAAW,CAACN,GAAKC,CAAO,KAAKF,GAC7B;AACI,cAAMF,IAASS,EAAK,IAAIN,CAAG,yBAAS;AAEhC,QAAAH,EAAO,IAAII,CAAO,MAEtBJ,EAAO,IAAII,CAAO,GACbK,EAAA,IAAIN,GAAKH,CAAM,GAEd,MAAA,CAACG,GAAKC,CAAO;AAAA,MACvB;AAAA,IAAA,CACH;AAAA,EACL;AAAA,EAEO,QACP;AACU,UAAAM,wBAAe;AAErB,eAAW,CAACP,CAAG,KAAK,KAAK,WACzB;AACI,YAAMQ,IAAQD,EAAS,IAAIP,CAAG,KAAK;AAE1B,MAAAO,EAAA,IAAIP,GAAKQ,IAAQ,CAAC;AAAA,IAC/B;AAEO,WAAA,IAAIV,EAAgB,aAC3B;AACI,iBAAW,CAACE,GAAKQ,CAAK,KAAKD;AAEjB,cAAA,CAACP,GAAKQ,CAAK;AAAA,IACrB,CACH;AAAA,EACL;AAAA,EACO,QACP;AACU,UAAAC,wBAAa;AAEnB,eAAW,CAACT,GAAKC,CAAO,KAAK,KAAK;AAE1B,MAAAQ,EAAO,IAAIT,CAAG,KAEXS,EAAA,IAAIT,GAAKC,CAAO;AAGpB,WAAA,IAAIH,EAAgB,aAC3B;AACI,iBAAW,CAACE,GAAKC,CAAO,KAAKQ;AAEnB,cAAA,CAACT,GAAKC,CAAO;AAAA,IACvB,CACH;AAAA,EACL;AAAA,EACO,OACP;AACU,UAAAS,wBAAY;AAElB,eAAW,CAACV,GAAKC,CAAO,KAAK,KAAK;AAExB,MAAAS,EAAA,IAAIV,GAAKC,CAAO;AAGnB,WAAA,IAAIH,EAAgB,aAC3B;AACI,iBAAW,CAACE,GAAKC,CAAO,KAAKS;AAEnB,cAAA,CAACV,GAAKC,CAAO;AAAA,IACvB,CACH;AAAA,EACL;AAAA,EAEO,UACP;AACI,WAAO,MAAM,KAAK,KAAK,MAAM,EAAE,QAAQ;AAAA,EAC3C;AAAA,EACO,QACP;AACU,UAAAU,wBAAa;AAEnB,eAAW,CAACX,GAAKC,CAAO,KAAK,KAAK,WAClC;AACI,YAAMb,IAAQuB,EAAO,IAAIX,CAAG,KAAK,CAAA;AAEjC,MAAAZ,EAAM,KAAKa,CAAO,GACXU,EAAA,IAAIX,GAAKZ,CAAK;AAAA,IACzB;AAEO,WAAAuB;AAAA,EACX;AAAA,EACO,WACP;AACI,UAAMA,IAAS,CAAA;AAEf,eAAW,CAACX,GAAKC,CAAO,KAAK,KAAK,WAClC;AACI,YAAMb,IAAQuB,EAAOX,CAAG,KAAK,CAAA;AAE7B,MAAAZ,EAAM,KAAKa,CAAO,GAClBU,EAAOX,CAAG,IAAIZ;AAAA,IAClB;AAEO,WAAAuB;AAAA,EACX;AACJ;ACnPA,MAAqBC,EACrB;AAAA,EAOW,YAAY1B,GACnB;AAPU,IAAAC,EAAA;AAQD,SAAA,YAAY,IAAIF,EAAcC,CAAQ;AAAA,EAC/C;AAAA,EAEO,OAAOG,GACd;AACI,WAAO,IAAIuB,EAAW,KAAK,UAAU,OAAOvB,CAAS,CAAC;AAAA,EAC1D;AAAA,EACO,IAAOI,GACd;AACI,WAAO,IAAImB,EAAW,KAAK,UAAU,IAAInB,CAAQ,CAAC;AAAA,EACtD;AAAA,EAEO,SACP;AACI,WAAO,IAAImB,EAAW,KAAK,UAAU,OAAQ,CAAA;AAAA,EACjD;AAAA,EAEO,MAA6BnB,GACpC;AACI,WAAO,IAAIS,EAAmB,KAAK,UAAU,IAAI,CAACD,GAASX,MAIhD,CAFKG,EAASQ,GAASX,CAAK,GAEtBW,CAAO,CACvB,CAAC;AAAA,EACN;AACJ;AClCA,MAAqBY,EACrB;AAAA,EAMW,YAAYC,IAAoB,IACvC;AANU,IAAA3B,EAAA;AAEA,IAAAA,EAAA;AACA,IAAAA,EAAA;AAIN,SAAK,qBAAqB2B,GAE1B,KAAK,YAAY,OAAO,gBACxB,KAAK,cAAc,OAAO;AAAA,EAC9B;AAAA,EAKU,KAAQC,GAAkBC,GAAsBC,GAC1D;AACU,UAAAC,IAAgBH,EAAQ,QAAQC,CAAY;AAClD,QAAIE;AAGA,UAAA;AACW,eAAA,KAAK,MAAMA,CAAa;AAAA,cAGnC;AAEY,gBAAA;AAAA,UACJ,QAAQA,CAAa,gBAAgBF,CAAY;AAAA,QAAA,GAGrDD,EAAQ,WAAWC,CAAY;AAAA,MACnC;AAGG,WAAAC;AAAA,EACX;AAAA,EACU,KAAQF,GAAkBC,GAAsBG,GAC1D;AACU,UAAAC,IAAe,KAAK,UAAUD,CAAQ;AAC5C,IAAIC,IAEQL,EAAA,QAAQC,GAAcI,CAAY,IAI1CL,EAAQ,WAAWC,CAAY;AAAA,EAEvC;AAAA,EAcO,IAAOA,GAAsBC,GAAkBI,IAAa,KAAK,oBACxE;AACI,UAAMN,IAAUM,IAAa,KAAK,cAAc,KAAK;AAErD,WAAO,KAAK,KAAQN,GAASC,GAAcC,CAAY;AAAA,EAC3D;AAAA,EAYO,OAAUD,GAAsBC,GACvC;AACI,WAAO,KAAK,KAAQ,KAAK,WAAWD,GAAcC,CAAY;AAAA,EAClE;AAAA,EAaO,SAAYD,GAAsBC,GACzC;AACI,WAAO,KAAK,OAAUD,CAAY,KAAK,KAAK,KAAQA,GAAcC,CAAY;AAAA,EAClF;AAAA,EAYO,KAAQD,GAAsBC,GACrC;AACI,WAAO,KAAK,KAAQ,KAAK,aAAaD,GAAcC,CAAY;AAAA,EACpE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAUO,IAAID,GAAsBK,GACjC;AAGW,YAFSA,IAAa,KAAK,cAAc,KAAK,WAEtC,QAAQL,CAAY,MAAM;AAAA,EAC7C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQO,MAAMA,GACb;AACI,WAAO,KAAK,UAAU,QAAQA,CAAY,MAAM;AAAA,EACpD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EASO,KAAKA,GACZ;AACI,WAAO,KAAK,MAAMA,CAAY,KAAK,KAAK,OAAOA,CAAY;AAAA,EAC/D;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQO,OAAOA,GACd;AACI,WAAO,KAAK,YAAY,QAAQA,CAAY,MAAM;AAAA,EACtD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAUO,IAAOA,GAAsBG,GAAcE,IAAa,KAAK,oBACpE;AACI,UAAMN,IAAUM,IAAa,KAAK,cAAc,KAAK;AAEhD,SAAA,KAAQN,GAASC,GAAcG,CAAQ;AAAA,EAChD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQO,SAAYH,GAAsBG,GACzC;AACI,SAAK,KAAQ,KAAK,WAAWH,GAAcG,CAAQ;AAAA,EACvD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQO,MAASH,GAAsBG,GACtC;AACI,SAAK,KAAQ,KAAK,aAAaH,GAAcG,CAAQ;AAAA,EACzD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOO,OAAOH,GACd;AACS,SAAA,UAAU,WAAWA,CAAY;AAAA,EAC1C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMO,MAAMA,GACb;AACS,SAAA,YAAY,WAAWA,CAAY;AAAA,EAC5C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMO,MAAMA,GACb;AACS,SAAA,UAAU,WAAWA,CAAY,GACjC,KAAA,YAAY,WAAWA,CAAY;AAAA,EAC5C;AACJ;AC9OA,MAAqBM,EACrB;AAAA,EAGW,cACP;AAHU,IAAAnC,EAAA;AAIN,SAAK,eAAe;EACxB;AAAA,EAEO,IAAIoC,GACX;AACS,SAAA,aAAa,KAAKA,CAAU;AAAA,EACrC;AAAA,EACO,OAAOA,GACd;AACI,UAAMjC,IAAQ,KAAK,aAAa,QAAQiC,CAAU;AAClD,QAAIjC,IAAQ;AAEF,YAAA,IAAIX,EAAU,8DAA8D;AAGjF,SAAA,aAAa,OAAOW,GAAO,CAAC;AAAA,EACrC;AAAA,EAEO,QAAQkC,GACf;AACW,WAAA,KAAK,aACP,QACA,IAAI,CAACD,MAAeA,EAAW,GAAGC,CAAI,CAAC;AAAA,EAChD;AACJ;ACvBA,MAAqBC,EACrB;AAAA,EAUW,YAAYC,GAA6CC,GAChE;AAVU,IAAAxC,EAAA;AACA,IAAAA,EAAA;AACA,IAAAA,EAAA;AAEA,IAAAA,EAAA;AACA,IAAAA,EAAA;AAEA,IAAAA,EAAA;AAIN,SAAK,aAAa,IAClB,KAAK,eAAe,IACpB,KAAK,cAAc;AAEf,QAAAyC,GACAC;AAEE,UAAAC,IAAkC,CAACC,GAASC,MAClD;AACe,MAAAJ,IAAAG,GACDF,IAAAG;AAAA,IAAA;AAGV,QAAAC;AACJ,IAAIP,IAEAO,IAAe,CAAC7C,OAEZ,KAAK,aAAa,IAClB,KAAK,eAAe,IAEbsC,EAAatC,CAAK,KAK7B6C,IAAe,CAAC7C,OAEZ,KAAK,aAAa,IAClB,KAAK,eAAe,IAEZA;AAIZ,QAAA8C;AACJ,IAAIP,IAEAO,IAAc,CAACC,OAEX,KAAK,aAAa,IAClB,KAAK,cAAc,IAEZR,EAAYQ,CAAM,KAK7BD,IAAc,CAACC,OAEX,KAAK,aAAa,IAClB,KAAK,cAAc,IAEXA,IAIhB,KAAK,WAAW,IAAI,QAAWL,CAAQ,EAClC,KAAKG,GAAcC,CAAW,GAEnC,KAAK,WAAWN,GAChB,KAAK,UAAUC;AAAA,EACnB;AAAA,EAEA,IAAW,YAAqB;AAAE,WAAO,KAAK;AAAA,EAAY;AAAA,EAC1D,IAAW,cAAuB;AAAE,WAAO,KAAK;AAAA,EAAc;AAAA,EAC9D,IAAW,aAAsB;AAAE,WAAO,KAAK;AAAA,EAAa;AAAA,EAE5D,IAAW,UAA8B;AAAE,WAAO,KAAK;AAAA,EAAU;AAAA,EACjE,IAAW,SAA6B;AAAE,WAAO,KAAK;AAAA,EAAS;AAAA,EAExD,KACHH,GACAC,GACJ;AACI,WAAO,KAAK,SAAS,KAAKD,GAAaC,CAAU;AAAA,EACrD;AAAA,EACO,MAAaA,GACpB;AACW,WAAA,KAAK,SAAS,MAAMA,CAAU;AAAA,EACzC;AAAA,EACO,QAAQS,GACf;AACW,WAAA,KAAK,SAAS,QAAQA,CAAS;AAAA,EAC1C;AAAA,EAEO,MAAMC,GACb;AACI,WAAAA,EAAQ,KAAK,KAAK,SAAS,KAAK,MAAM,GAE/B;AAAA,EACX;AAAA,EAEA,KAAY,OAAO,WAAW,IAAI;AAAS,WAAA;AAAA,EAAmB;AAClE;AClHA,MAAqBC,EACrB;AAAA,EAOW,YAAYR,GACnB;AAPU,IAAA3C,EAAA;AACA,IAAAA,EAAA;AACA,IAAAA,EAAA;AAEA,IAAAA,EAAA;AAIN,SAAK,aAAa,IAClB,KAAK,eAAe,IACpB,KAAK,cAAc;AAEb,UAAAyC,IAAW,CAACrC,OAEd,KAAK,aAAa,IAClB,KAAK,eAAe,IAEbA,IAELsC,IAAU,CAACM,OAEb,KAAK,aAAa,IAClB,KAAK,cAAc,IAEZA;AAGX,SAAK,WAAW,IAAI,QAAWL,CAAQ,EAClC,KAAKF,GAAUC,CAAO;AAAA,EAC/B;AAAA,EAEA,IAAW,YAAqB;AAAE,WAAO,KAAK;AAAA,EAAY;AAAA,EAC1D,IAAW,cAAuB;AAAE,WAAO,KAAK;AAAA,EAAc;AAAA,EAC9D,IAAW,aAAsB;AAAE,WAAO,KAAK;AAAA,EAAa;AAAA,EAErD,KACHH,GACAC,GACJ;AACI,WAAO,KAAK,SAAS,KAAKD,GAAaC,CAAU;AAAA,EACrD;AAAA,EACO,MAAaA,GACpB;AACW,WAAA,KAAK,SAAS,MAAMA,CAAU;AAAA,EACzC;AAAA,EACO,QAAQS,GACf;AACW,WAAA,KAAK,SAAS,QAAQA,CAAS;AAAA,EAC1C;AAAA,EAEA,KAAY,OAAO,WAAW,IAAI;AAAS,WAAA;AAAA,EAAgB;AAC/D;ACvDA,MAAqBG,EACrB;AAAA,EACI,OAAc,QAAQC,IAAgB,KACtC;AACY,WAAA,KAAK,OAAW,IAAAA;AAAA,EAC5B;AAAA,EAIA,OAAc,QAAQC,GAAaC,GACnC;AACI,WAEW,KAAK,MAFZA,MAAQ,SAEU,KAAK,WAAWD,IAGpB,KAAK,OAAY,KAAAC,IAAMD,KAAOA,CAHP;AAAA,EAI7C;AAAA,EAIA,OAAc,QAAQA,GAAaC,GACnC;AACI,WAAIA,MAAQ,SAEA,KAAK,OAAW,IAAAD,IAGpB,KAAK,OAAY,KAAAC,IAAMD,KAAOA;AAAA,EAC1C;AAAA,EAEA,OAAc,OAAU1C,GACxB;AACI,WAAOA,EAAS,KAAK,QAAQA,EAAS,MAAM,CAAC;AAAA,EACjD;AAAA;AAAA,EAGQ,cAAc;AAAA,EAAE;AAC5B;ACtCA,eAAsB4C,EAAMC,GAC5B;AACW,SAAA,IAAI,QAAc,CAACb,GAASC,MAAW,WAAWD,GAASa,CAAY,CAAC;AACnF;AAEA,eAAsBC,IACtB;AACW,SAAA,IAAI,QAAc,CAACd,GAASC,MAAW,sBAAsB,MAAMD,EAAS,CAAA,CAAC;AACxF;ACNY,IAAAe,sBAAAA,OAERA,EAAAA,EAAA,SAAS,GAAT,IAAA,UACAA,EAAAA,EAAA,SAAS,GAAT,IAAA,UACAA,EAAAA,EAAA,OAAO,IAAP,IAAA,QACAA,EAAAA,EAAA,MAAM,KAAN,IAAA,OACAA,EAAAA,EAAA,OAAO,MAAP,IAAA,QACAA,EAAAA,EAAA,QAAQ,MAAR,IAAA,SACAA,EAAAA,EAAA,OAAO,OAAP,IAAA,QARQA,IAAAA,KAAA,CAAA,CAAA;AAWL,SAASC,EAAeC,GAAaC,GAAWC,IAAO,OAC9D;AACW,SAAA,KAAK,OAAOD,EAAI,YAAYD,EAAM,aAAaE,CAAI;AAC9D;AAEO,SAASC,EAAUH,GAAaC,GAAWG,IAAS,OAC3D;AACW,SAAA,IAAInE,EAAoB,aAC/B;AACU,UAAAoE,IAAUJ,EAAI;AAEhB,QAAAK,IAAmBN,EAAM;AAC7B,WAAOM,IAAWD;AAER,YAAA,IAAI,KAAKC,CAAQ,GAEXA,KAAAF;AAAA,EAChB,CACH;AACL;AAEgB,SAAAG,EAAUC,GAAYN,IAAO,OAC7C;AACW,SAAA,IAAI,KAAK,KAAK,MAAMM,EAAK,YAAYN,CAAI,IAAIA,CAAI;AAC5D;ACrCsB,eAAAO,EAAWC,GAAmBC,IAAa,mBACjE;AACI,SAAO,IAAI,QAAc,CAAC5B,GAASC,MACnC;AACU,UAAA4B,IAAS,SAAS,cAAc,QAAQ;AAE9C,IAAAA,EAAO,QAAQ,IACfA,EAAO,QAAQ,IACfA,EAAO,MAAMF,GACbE,EAAO,OAAOD,GAEPC,EAAA,SAAS,MAAM7B,KACf6B,EAAA,UAAU,MAAM5B,KAEd,SAAA,KAAK,YAAY4B,CAAM;AAAA,EAAA,CACnC;AACL;ACdO,SAASpD,EAAST,GACzB;AACQ,MAAA,MAAM,QAAQA,CAAQ;AAAK,WAAOA,EAAS;AAE/C,MAAI8D,IAAS;AACb,aAAWzD,KAAKL;AAAsB,IAAA8D,KAAA;AAE/B,SAAAA;AACX;AAoBO,SAASC,EAAMd,GAAeC,GAAcc,IAAO,GAC1D;AACW,SAAA,IAAI9E,EAAsB,aACjC;AACI,IAAIgE,MAAQ,WAEFA,IAAAD,GACEA,IAAA,IAGRA,IAAQC,MAAOc,IAAOA,KAAQ;AAElC,aAASzE,IAAQ0D,GAAO1D,IAAQ2D,GAAK3D,KAASyE;AAAc,YAAAzE;AAAA,EAAO,CACtE;AACL;AAEO,SAAS0E,EAAWC,GAC3B;AACU,QAAAC,IAAQ,MAAM,KAAKD,CAAQ;AAEjC,WAAS3E,IAAQ4E,EAAM,SAAS,GAAG5E,IAAQ,GAAGA,KAAS,GACvD;AACI,UAAM6E,IAAQ,KAAK,MAAM,KAAK,YAAY7E,IAAQ,EAAE;AAEpD,KAAC4E,EAAM5E,CAAK,GAAG4E,EAAMC,CAAK,CAAC,IAAI,CAACD,EAAMC,CAAK,GAAGD,EAAM5E,CAAK,CAAC;AAAA,EAC9D;AAEO,SAAA4E;AACX;AAEO,SAASE,EAAUrE,GAC1B;AACW,SAAA,IAAId,EAAiB,aAC5B;AACU,UAAAY,wBAAa;AAEnB,eAAWI,KAAWF;AAEd,MAAAF,EAAO,IAAII,CAAO,MAEtBJ,EAAO,IAAII,CAAO,GAEZ,MAAAA;AAAA,EACV,CACH;AACL;AAEgB,SAAAoE,EAAUC,GAAoBC,GAC9C;AACW,SAAA,IAAItF,EAAsB,aACjC;AACI,UAAMuF,IAAgBF,EAAM,OAAO,QAAQ,EAAE,GACvCG,IAAiBF,EAAO,OAAO,QAAQ,EAAE;AAE/C,eACA;AACU,YAAAG,IAAcF,EAAc,QAC5BG,IAAeF,EAAe;AAE/B,UAAAC,EAAY,QAAUC,EAAa;AAAS;AAEjD,YAAM,CAACD,EAAY,OAAOC,EAAa,KAAK;AAAA,IAChD;AAAA,EAAA,CACH;AACL;AC1FgB,SAAAC,EAA0B/E,GAAqBgF,GAC/D;AACI,MAAIA,MAAY,QAChB;AACI,QAAIC,IAAO,GACPjB,IAAS;AAEb,eAAWzE,KAASS;AAEhBiF,MAAAA,KAAQ1F,GACRyE,KAAU;AAGd,WAAOiB,IAAOjB;AAAAA,EAClB;AAEA,MAAIiB,IAAO,GACPjB,IAAS;AAEb,aAAW,CAACzE,GAAO2F,CAAM,KAAKV,EAAIxE,GAAQgF,CAAO;AAE7C,IAAAC,KAAQ1F,IAAQ2F,GACNlB,KAAAkB;AAGd,SAAOD,IAAOjB;AAClB;AAEO,SAASmB,EAAK5F,GACrB;AACI,MAAI6F,IAAc;AAClB,WAAS3F,IAAQ,GAAGA,IAAQF,EAAM,QAAQE,KAAS,GACnD;AACU,UAAA4F,IAAO9F,EAAM,WAAWE,CAAK;AAEnB,IAAA2F,KAAAA,KAAe,KAAKA,IAAeC,GACpCD,KAAA;AAAA,EACnB;AAEO,SAAAA;AACX;AAEO,SAASE,EAAsBtF,GACtC;AACI,MAAIiF,IAAO;AACX,aAAW1F,KAASS;AAAkB,IAAAiF,KAAA1F;AAE/B,SAAA0F;AACX;ACpDO,SAASM,EAAWhG,GAC3B;AACW,SAAA,GAAGA,EAAM,OAAO,CAAC,EAAE,aAAa,GAAGA,EAAM,MAAM,CAAC,CAAC;AAC5D;ACHO,MAAMiG,IAAU;"}
|
|
1
|
+
{"version":3,"file":"core.js","sources":["../src/models/exception.ts","../src/models/smart-iterator.ts","../src/models/aggregators/reduced-iterator.ts","../src/models/aggregators/aggregated-iterator.ts","../src/models/aggregators/index.ts","../src/models/json-storage.ts","../src/models/subscribers.ts","../src/models/promises/deferred-promise.ts","../src/models/promises/smart-promise.ts","../src/utils/random.ts","../src/utils/async.ts","../src/utils/date.ts","../src/utils/dom.ts","../src/utils/iterator.ts","../src/utils/math.ts","../src/utils/string.ts","../src/index.ts"],"sourcesContent":["export default class Exception extends Error\n{\n public static FromUnknown(error: unknown): Exception\n {\n if (error instanceof Exception)\n {\n return error;\n }\n if (error instanceof Error)\n {\n const exc = new Exception(error.message);\n\n exc.stack = error.stack;\n exc.name = error.name;\n\n return exc;\n }\n\n return new Exception(`${error}`);\n }\n\n public constructor(message: string, cause?: unknown, name = \"Exception\")\n {\n super(message);\n\n this.cause = cause;\n this.name = name;\n\n if (cause)\n {\n if (cause instanceof Error)\n {\n this.stack += `\\n\\nCaused by ${cause.stack}`;\n }\n else\n {\n this.stack += `\\n\\nCaused by ${cause}`;\n }\n }\n }\n}\n","import type { GeneratorFunction, Iteratee, Reducer } from \"../types.js\";\n\nexport default class SmartIterator<T, R = void, N = undefined> implements Iterator<T, R, N>\n{\n protected _iterator: Iterator<T, R, N>;\n\n public return?: (value?: R) => IteratorResult<T, R>;\n public throw?: (error?: unknown) => IteratorResult<T, R>;\n\n public constructor(iterable: Iterable<T>);\n public constructor(iterator: Iterator<T, R, N>);\n public constructor(generatorFn: GeneratorFunction<T, R, N>);\n public constructor(argument: Iterable<T> | Iterator<T, R, N> | GeneratorFunction<T, R, N>);\n public constructor(argument: Iterable<T> | Iterator<T, R, N> | GeneratorFunction<T, R, N>)\n {\n if (argument instanceof Function)\n {\n this._iterator = argument();\n }\n else if (Symbol.iterator in argument)\n {\n this._iterator = argument[Symbol.iterator]() as Iterator<T, R, N>;\n }\n else\n {\n this._iterator = argument;\n }\n\n if (this._iterator.return) { this.return = (value?: R) => this._iterator.return!(value); }\n if (this._iterator.throw) { this.throw = (error?: unknown) => this._iterator.throw!(error); }\n }\n\n public every(predicate: Iteratee<T, boolean>): boolean\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n\n if (result.done) { return true; }\n if (!(predicate(result.value, index))) { return false; }\n\n index += 1;\n }\n }\n public some(predicate: Iteratee<T, boolean>): boolean\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n\n if (result.done) { return false; }\n if (predicate(result.value, index)) { return true; }\n\n index += 1;\n }\n }\n\n public filter(predicate: Iteratee<T, boolean>): SmartIterator<T, R>\n {\n const iterator = this._iterator;\n\n return new SmartIterator<T, R>(function* ()\n {\n let index = 0;\n\n while (true)\n {\n const result = iterator.next();\n\n if (result.done) { return result.value; }\n if (predicate(result.value, index)) { yield result.value; }\n\n index += 1;\n }\n });\n }\n public map<V>(iteratee: Iteratee<T, V>): SmartIterator<V, R>\n {\n const iterator = this._iterator;\n\n return new SmartIterator<V, R>(function* ()\n {\n let index = 0;\n\n while (true)\n {\n const result = iterator.next();\n if (result.done) { return result.value; }\n\n yield iteratee(result.value, index);\n\n index += 1;\n }\n });\n }\n public reduce(reducer: Reducer<T, T>): T;\n public reduce<A>(reducer: Reducer<T, A>, initialValue: A): A;\n public reduce<A>(reducer: Reducer<T, A>, initialValue?: A): A\n {\n let index = 0;\n let accumulator = initialValue;\n if (accumulator === undefined)\n {\n const result = this._iterator.next();\n if (result.done) { throw new TypeError(\"Reduce of empty iterator with no initial value\"); }\n\n accumulator = (result.value as unknown) as A;\n index += 1;\n }\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n if (result.done) { return accumulator; }\n\n accumulator = reducer(accumulator, result.value, index);\n\n index += 1;\n }\n }\n\n public enumerate(): SmartIterator<[number, T], R>\n {\n return this.map((value, index) => [index, value]);\n }\n public unique(): SmartIterator<T, R>\n {\n const iterator = this._iterator;\n\n return new SmartIterator<T, R>(function* ()\n {\n const values = new Set<T>();\n\n while (true)\n {\n const result = iterator.next();\n\n if (result.done) { return result.value; }\n if (values.has(result.value)) { continue; }\n\n values.add(result.value);\n\n yield result.value;\n }\n });\n }\n\n public count(): number\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n if (result.done) { return index; }\n\n index += 1;\n }\n }\n public forEach(iteratee: Iteratee<T>): void\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n if (result.done) { return; }\n\n iteratee(result.value, index);\n\n index += 1;\n }\n }\n\n public next(...values: N extends undefined ? [] : [N]): IteratorResult<T, R>\n {\n return this._iterator.next(...values);\n }\n\n public toArray(): T[]\n {\n return Array.from(this as Iterable<T>);\n }\n\n public [Symbol.iterator](): SmartIterator<T, R, N> { return this; }\n}\n","import SmartIterator from \"../smart-iterator.js\";\n\nimport type { KeyIteratee } from \"./types.js\";\nimport type { GeneratorFunction } from \"../../types.js\";\n\nexport default class ReducedIterator<K extends PropertyKey, T>\n{\n protected _elements: SmartIterator<[K, T]>;\n\n public constructor(iterable: Iterable<[K, T]>);\n public constructor(iterator: Iterator<[K, T]>);\n public constructor(generatorFn: GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>)\n {\n this._elements = new SmartIterator(argument);\n }\n\n public filter(predicate: KeyIteratee<K, T, boolean>): ReducedIterator<K, T>\n {\n const elements = this._elements;\n\n return new ReducedIterator(function* ()\n {\n for (const [index, [key, element]] of elements.enumerate())\n {\n if (predicate(key, element, index))\n {\n yield [key, element];\n }\n }\n });\n }\n public map<V>(iteratee: KeyIteratee<K, T, V>): ReducedIterator<K, V>\n {\n const elements = this._elements;\n\n return new ReducedIterator(function* ()\n {\n for (const [index, [key, element]] of elements.enumerate())\n {\n yield [key, iteratee(key, element, index)];\n }\n });\n }\n\n public toArray(): T[]\n {\n return Array.from(this.toMap().values());\n }\n public toMap(): Map<K, T>\n {\n return new Map(this._elements.toArray());\n }\n public toObject(): Record<K, T>\n {\n return Object.fromEntries(this._elements.toArray()) as Record<K, T>;\n }\n}\n","import ReducedIterator from \"./reduced-iterator.js\";\nimport SmartIterator from \"../smart-iterator.js\";\n\nimport type { KeyIteratee, KeyReducer } from \"./types.js\";\nimport type { GeneratorFunction } from \"../../types.js\";\n\nexport default class AggregatedIterator<K extends PropertyKey, T>\n{\n protected _elements: SmartIterator<[K, T]>;\n\n public constructor(iterable: Iterable<[K, T]>);\n public constructor(iterator: Iterator<[K, T]>);\n public constructor(generatorFn: GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>)\n {\n this._elements = new SmartIterator(argument);\n }\n\n public every(predicate: KeyIteratee<K, T, boolean>): ReducedIterator<K, boolean>\n {\n const indexes = new Map<K, [number, boolean]>();\n\n for (const [key, element] of this._elements)\n {\n const [index, result] = indexes.get(key) ?? [0, true];\n\n if (!(result)) { continue; }\n\n indexes.set(key, [index + 1, predicate(key, element, index)]);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, [_, result]] of indexes)\n {\n yield [key, result];\n }\n });\n }\n public some(predicate: KeyIteratee<K, T, boolean>): ReducedIterator<K, boolean>\n {\n const indexes = new Map<K, [number, boolean]>();\n\n for (const [key, element] of this._elements)\n {\n const [index, result] = indexes.get(key) ?? [0, false];\n\n if (result) { continue; }\n\n indexes.set(key, [index + 1, predicate(key, element, index)]);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, [_, result]] of indexes)\n {\n yield [key, result];\n }\n });\n }\n\n public filter(predicate: KeyIteratee<K, T, boolean>): AggregatedIterator<K, T>\n {\n const elements = this._elements;\n\n return new AggregatedIterator(function* ()\n {\n const indexes = new Map<K, number>();\n\n for (const [key, element] of elements)\n {\n const index = indexes.get(key) ?? 0;\n\n indexes.set(key, index + 1);\n\n if (predicate(key, element, index)) { yield [key, element]; }\n }\n });\n }\n public map<V>(iteratee: KeyIteratee<K, T, V>): AggregatedIterator<K, V>\n {\n const elements = this._elements;\n\n return new AggregatedIterator(function* ()\n {\n const indexes = new Map<K, number>();\n\n for (const [key, element] of elements)\n {\n const index = indexes.get(key) ?? 0;\n\n indexes.set(key, index + 1);\n\n yield [key, iteratee(key, element, index)];\n }\n });\n }\n public reduce(reducer: KeyReducer<K, T, T>): ReducedIterator<K, T>;\n public reduce<A>(reducer: KeyReducer<K, T, A>, initialValue: (key: K) => A): ReducedIterator<K, A>;\n public reduce<A>(reducer: KeyReducer<K, T, A>, initialValue?: (key: K) => A): ReducedIterator<K, A>\n {\n const accumulators = new Map<K, [number, A]>();\n\n for (const [key, element] of this._elements)\n {\n let index: number;\n let accumulator: A;\n\n if (accumulators.has(key))\n {\n [index, accumulator] = accumulators.get(key)!;\n\n index += 1;\n }\n else if (initialValue !== undefined)\n {\n index = 0;\n accumulator = initialValue(key);\n }\n else\n {\n accumulators.set(key, [0, (element as unknown) as A]);\n\n continue;\n }\n\n accumulator = reducer(key, accumulator, element, index);\n\n accumulators.set(key, [index, accumulator]);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, [_, accumulator]] of accumulators)\n {\n yield [key, accumulator];\n }\n });\n }\n\n public unique(): AggregatedIterator<K, T>\n {\n const elements = this._elements;\n\n return new AggregatedIterator(function* ()\n {\n const keys = new Map<K, Set<T>>();\n\n for (const [key, element] of elements)\n {\n const values = keys.get(key) ?? new Set<T>();\n\n if (values.has(element)) { continue; }\n\n values.add(element);\n keys.set(key, values);\n\n yield [key, element];\n }\n });\n }\n\n public count(): ReducedIterator<K, number>\n {\n const counters = new Map<K, number>();\n\n for (const [key] of this._elements)\n {\n const count = counters.get(key) ?? 0;\n\n counters.set(key, count + 1);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, count] of counters)\n {\n yield [key, count];\n }\n });\n }\n public first(): ReducedIterator<K, T>\n {\n const firsts = new Map<K, T>();\n\n for (const [key, element] of this._elements)\n {\n if (firsts.has(key)) { continue; }\n\n firsts.set(key, element);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, element] of firsts)\n {\n yield [key, element];\n }\n });\n }\n public last(): ReducedIterator<K, T>\n {\n const lasts = new Map<K, T>();\n\n for (const [key, element] of this._elements)\n {\n lasts.set(key, element);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, element] of lasts)\n {\n yield [key, element];\n }\n });\n }\n\n public toArray(): T[][]\n {\n return Array.from(this.toMap().values());\n }\n public toMap(): Map<K, T[]>\n {\n const groups = new Map<K, T[]>();\n\n for (const [key, element] of this._elements)\n {\n const value = groups.get(key) ?? [];\n\n value.push(element);\n groups.set(key, value);\n }\n\n return groups;\n }\n public toObject(): Record<K, T[]>\n {\n const groups = { } as Record<K, T[]>;\n\n for (const [key, element] of this._elements)\n {\n const value = groups[key] ?? [];\n\n value.push(element);\n groups[key] = value;\n }\n\n return groups;\n }\n}\n","import AggregatedIterator from \"./aggregated-iterator.js\";\nimport ReducedIterator from \"./reduced-iterator.js\";\nimport SmartIterator from \"../smart-iterator.js\";\n\nimport type { GeneratorFunction, Iteratee } from \"../../types.js\";\n\nexport default class Aggregator<T>\n{\n protected _elements: SmartIterator<T>;\n\n public constructor(iterable: Iterable<T>);\n public constructor(iterator: Iterator<T>);\n public constructor(generatorFn: GeneratorFunction<T>);\n public constructor(argument: Iterable<T> | Iterator<T> | GeneratorFunction<T>);\n public constructor(argument: Iterable<T> | Iterator<T> | GeneratorFunction<T>)\n {\n this._elements = new SmartIterator(argument);\n }\n\n public filter(predicate: Iteratee<T, boolean>): Aggregator<T>\n {\n return new Aggregator(this._elements.filter(predicate));\n }\n public map<V>(iteratee: Iteratee<T, V>): Aggregator<V>\n {\n return new Aggregator(this._elements.map(iteratee));\n }\n\n public unique(): Aggregator<T>\n {\n return new Aggregator(this._elements.unique());\n }\n\n public byKey<K extends PropertyKey>(iteratee: Iteratee<T, K>): AggregatedIterator<K, T>\n {\n return new AggregatedIterator(this._elements.map((element, index) =>\n {\n const key = iteratee(element, index);\n\n return [key, element];\n }));\n }\n}\n\nexport { AggregatedIterator, ReducedIterator };\n","/* eslint-disable no-trailing-spaces */\n\n/**\n * A wrapper around the `Storage` API to store and retrieve JSON values.\n *\n * It allows to handle either the `sessionStorage` or the `localStorage`\n * storage at the same time, depending on the required use case.\n */\nexport default class JsonStorage\n{\n protected _preferPersistence: boolean;\n\n protected _volatile: Storage;\n protected _persistent: Storage;\n\n public constructor(preferPersistence = true)\n {\n this._preferPersistence = preferPersistence;\n\n this._volatile = window.sessionStorage;\n this._persistent = window.localStorage;\n }\n\n protected _get<T>(storage: Storage, propertyName: string): T | undefined;\n protected _get<T>(storage: Storage, propertyName: string, defaultValue: T): T;\n protected _get<T>(storage: Storage, propertyName: string, defaultValue?: T): T | undefined;\n protected _get<T>(storage: Storage, propertyName: string, defaultValue?: T): T | undefined\n {\n const propertyValue = storage.getItem(propertyName);\n if (propertyValue)\n {\n try\n {\n return JSON.parse(propertyValue);\n }\n catch (error)\n {\n // eslint-disable-next-line no-console\n console.warn(\n `The \"${propertyValue}\" value for \"${propertyName}\"` +\n \" property cannot be parsed. Clearing the storage...\");\n\n storage.removeItem(propertyName);\n }\n }\n\n return defaultValue;\n }\n protected _set<T>(storage: Storage, propertyName: string, newValue?: T): void\n {\n const encodedValue = JSON.stringify(newValue);\n if (encodedValue)\n {\n storage.setItem(propertyName, encodedValue);\n }\n else\n {\n storage.removeItem(propertyName);\n }\n }\n\n /**\n * Retrieves the value with the specified name from the corresponding storage.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n * @param persistent Whether to use the persistent `localStorage` or the volatile `sessionStorage`.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public get<T>(propertyName: string, defaultValue: undefined, persistent?: boolean): T | undefined;\n public get<T>(propertyName: string, defaultValue: T, persistent?: boolean): T ;\n public get<T>(propertyName: string, defaultValue?: T, persistent?: boolean): T | undefined;\n public get<T>(propertyName: string, defaultValue?: T, persistent = this._preferPersistence): T | undefined\n {\n const storage = persistent ? this._persistent : this._volatile;\n\n return this._get<T>(storage, propertyName, defaultValue);\n }\n /**\n * Retrieves the value with the specified name from the volatile `sessionStorage`.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public recall<T>(propertyName: string): T | undefined;\n public recall<T>(propertyName: string, defaultValue: T): T;\n public recall<T>(propertyName: string, defaultValue?: T): T | undefined;\n public recall<T>(propertyName: string, defaultValue?: T): T | undefined\n {\n return this._get<T>(this._volatile, propertyName, defaultValue);\n }\n /**\n * Retrieves the value with the specified name looking first in the\n * volatile `sessionStorage` and then in the persistent `localStorage`.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public retrieve<T>(propertyName: string): T | undefined;\n public retrieve<T>(propertyName: string, defaultValue: T): T;\n public retrieve<T>(propertyName: string, defaultValue?: T): T | undefined;\n public retrieve<T>(propertyName: string, defaultValue?: T): T | undefined\n {\n return this.recall<T>(propertyName) ?? this.read<T>(propertyName, defaultValue);\n }\n /**\n * Retrieves the value with the specified name from the persistent `localStorage`.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public read<T>(propertyName: string): T | undefined;\n public read<T>(propertyName: string, defaultValue: T): T;\n public read<T>(propertyName: string, defaultValue?: T): T | undefined;\n public read<T>(propertyName: string, defaultValue?: T): T | undefined\n {\n return this._get<T>(this._persistent, propertyName, defaultValue);\n }\n\n /**\n * Checks whether the property with the specified name exists in the corresponding storage.\n *\n * @param propertyName The name of the property to check.\n * @param persistent Whether to use the persistent `localStorage` or the volatile `sessionStorage`.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public has(propertyName: string, persistent?: boolean): boolean\n {\n const storage = persistent ? this._persistent : this._volatile;\n\n return storage.getItem(propertyName) !== null;\n }\n /**\n * Checks whether the property with the specified name exists in the volatile `sessionStorage`.\n *\n * @param propertyName The name of the property to check.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public knows(propertyName: string): boolean\n {\n return this._volatile.getItem(propertyName) !== null;\n }\n /**\n * Checks whether the property with the specified name exists looking first in the\n * volatile `sessionStorage` and then in the persistent `localStorage`.\n *\n * @param propertyName The name of the property to check.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public find(propertyName: string): boolean\n {\n return this.knows(propertyName) ?? this.exists(propertyName);\n }\n /**\n * Checks whether the property with the specified name exists in the persistent `localStorage`.\n *\n * @param propertyName The name of the property to check.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public exists(propertyName: string): boolean\n {\n return this._persistent.getItem(propertyName) !== null;\n }\n\n /**\n * Sets the value with the specified name in the corresponding storage.\n * If the value is `undefined`, the property is removed from the storage.\n *\n * @param propertyName The name of the property to set.\n * @param newValue The new value to set.\n * @param persistent Whether to use the persistent `localStorage` or the volatile `sessionStorage`.\n */\n public set<T>(propertyName: string, newValue?: T, persistent = this._preferPersistence): void\n {\n const storage = persistent ? this._persistent : this._volatile;\n\n this._set<T>(storage, propertyName, newValue);\n }\n /**\n * Sets the value with the specified name in the volatile `sessionStorage`.\n * If the value is `undefined`, the property is removed from the storage.\n *\n * @param propertyName The name of the property to set.\n * @param newValue The new value to set.\n */\n public remember<T>(propertyName: string, newValue?: T): void\n {\n this._set<T>(this._volatile, propertyName, newValue);\n }\n /**\n * Sets the value with the specified name in the persistent `localStorage`.\n * If the value is `undefined`, the property is removed from the storage.\n *\n * @param propertyName The name of the property to set.\n * @param newValue The new value to set.\n */\n public write<T>(propertyName: string, newValue?: T): void\n {\n this._set<T>(this._persistent, propertyName, newValue);\n }\n\n /**\n * Removes the value with the specified name from the volatile `sessionStorage`.\n *\n * @param propertyName The name of the property to remove.\n */\n public forget(propertyName: string): void\n {\n this._volatile.removeItem(propertyName);\n }\n /**\n * Removes the value with the specified name from the persistent `localStorage`.\n *\n * @param propertyName The name of the property to remove.\n */\n public erase(propertyName: string): void\n {\n this._persistent.removeItem(propertyName);\n }\n /**\n * Removes the value with the specified name from all the storages.\n *\n * @param propertyName The name of the property to remove.\n */\n public clear(propertyName: string): void\n {\n this._volatile.removeItem(propertyName);\n this._persistent.removeItem(propertyName);\n }\n}\n","import Exception from \"./exception.js\";\n\nexport default class Subscribers<P extends unknown[] = [], R = void, T extends (...args: P) => R = (...args: P) => R>\n{\n protected _subscribers: T[];\n\n public constructor()\n {\n this._subscribers = [];\n }\n\n public add(subscriber: T): void\n {\n this._subscribers.push(subscriber);\n }\n public remove(subscriber: T): void\n {\n const index = this._subscribers.indexOf(subscriber);\n if (index < 0)\n {\n throw new Exception(\"Unable to remove the requested subscriber. It was not found.\");\n }\n\n this._subscribers.splice(index, 1);\n }\n\n public call(...args: P): R[]\n {\n return this._subscribers\n .slice()\n .map((subscriber) => subscriber(...args));\n }\n}\n","import type {\n PromiseResolver,\n PromiseRejecter,\n FulfilledHandler,\n RejectedHandler,\n PromiseExecutor\n\n} from \"../../types.js\";\n\nexport default class DeferredPromise<T = void, E = unknown, F = T, R = never>\n{\n protected _isPending: boolean;\n protected _isFulfilled: boolean;\n protected _isRejected: boolean;\n\n protected _resolve!: PromiseResolver<T>;\n protected _reject!: PromiseRejecter<E>;\n\n protected _promise: Promise<F | R>;\n\n public constructor(onFulfilled?: FulfilledHandler<T, F> | null, onRejected?: RejectedHandler<E, R> | null)\n {\n this._isPending = true;\n this._isFulfilled = false;\n this._isRejected = false;\n\n let _resolve: PromiseResolver<T>;\n let _reject: PromiseRejecter<E>;\n\n const executor: PromiseExecutor<T, E> = (resolve, reject) =>\n {\n _resolve = resolve;\n _reject = reject;\n };\n\n let _onFulfilled: FulfilledHandler<T, F>;\n if (onFulfilled)\n {\n _onFulfilled = (value) =>\n {\n this._isPending = false;\n this._isFulfilled = true;\n\n return onFulfilled!(value);\n };\n }\n else\n {\n _onFulfilled = (value) =>\n {\n this._isPending = false;\n this._isFulfilled = true;\n\n return (value as unknown) as F;\n };\n }\n\n let _onRejected: RejectedHandler<E, R>;\n if (onRejected)\n {\n _onRejected = (reason) =>\n {\n this._isPending = false;\n this._isRejected = true;\n\n return onRejected!(reason);\n };\n }\n else\n {\n _onRejected = (reason) =>\n {\n this._isPending = false;\n this._isRejected = true;\n\n return (reason as unknown) as R;\n };\n }\n\n this._promise = new Promise<T>(executor)\n .then(_onFulfilled, _onRejected);\n\n this._resolve = _resolve!;\n this._reject = _reject!;\n }\n\n public get isPending(): boolean { return this._isPending; }\n public get isFulfilled(): boolean { return this._isFulfilled; }\n public get isRejected(): boolean { return this._isRejected; }\n\n public get resolve(): PromiseResolver<T> { return this._resolve; }\n public get reject(): PromiseRejecter<E> { return this._reject; }\n\n public then<N = F | R, H = R>(\n onFulfilled?: FulfilledHandler<F | R, N> | null,\n onRejected?: RejectedHandler<R, H> | null): Promise<N | H>\n {\n return this._promise.then(onFulfilled, onRejected);\n }\n public catch<H = R>(onRejected?: RejectedHandler<R, H> | null): Promise<F | R | H>\n {\n return this._promise.catch(onRejected);\n }\n public finally(onFinally?: (() => void) | null): Promise<F | R>\n {\n return this._promise.finally(onFinally);\n }\n\n public watch(promise: Promise<T>): this\n {\n promise.then(this.resolve, this.reject);\n\n return this;\n }\n\n public get [Symbol.toStringTag]() { return \"DeferredPromise\"; }\n}\n","import type { FulfilledHandler, PromiseExecutor, RejectedHandler } from \"../../types.js\";\n\nexport default class SmartPromise<T = void, E = unknown>\n{\n protected _isPending: boolean;\n protected _isFulfilled: boolean;\n protected _isRejected: boolean;\n\n protected _promise: Promise<T | E>;\n\n public constructor(executor: PromiseExecutor<T, E>)\n {\n this._isPending = true;\n this._isFulfilled = false;\n this._isRejected = false;\n\n const _resolve = (result: T): T =>\n {\n this._isPending = false;\n this._isFulfilled = true;\n\n return result;\n };\n const _reject = (reason: E): E =>\n {\n this._isPending = false;\n this._isRejected = true;\n\n return reason;\n };\n\n this._promise = new Promise<T>(executor)\n .then(_resolve, _reject);\n }\n\n public get isPending(): boolean { return this._isPending; }\n public get isFulfilled(): boolean { return this._isFulfilled; }\n public get isRejected(): boolean { return this._isRejected; }\n\n public then<F = T, R = E>(\n onFulfilled?: FulfilledHandler<T | E, F> | null,\n onRejected?: RejectedHandler<E, R> | null): Promise<F | R>\n {\n return this._promise.then(onFulfilled, onRejected);\n }\n public catch<R = E>(onRejected?: RejectedHandler<E, R> | null): Promise<T | E | R>\n {\n return this._promise.catch(onRejected);\n }\n public finally(onFinally?: (() => void) | null): Promise<T | E>\n {\n return this._promise.finally(onFinally);\n }\n\n public get [Symbol.toStringTag]() { return \"SmartPromise\"; }\n}\n","export default class Random\n{\n public static Boolean(ratio: number = 0.5): boolean\n {\n return (Math.random() < ratio);\n }\n\n public static Integer(max: number): number;\n public static Integer(min: number, max: number): number;\n public static Integer(min: number, max?: number): number\n {\n if (max === undefined)\n {\n return Math.floor(Math.random() * min);\n }\n\n return Math.floor(Math.random() * (max - min) + min);\n }\n\n public static Decimal(max: number): number;\n public static Decimal(min: number, max: number): number;\n public static Decimal(min: number, max?: number): number\n {\n if (max === undefined)\n {\n return (Math.random() * min);\n }\n\n return (Math.random() * (max - min) + min);\n }\n\n public static Choice<T>(elements: T[]): T\n {\n return elements[this.Integer(elements.length)];\n }\n\n // eslint-disable-next-line no-useless-constructor\n private constructor() { }\n}\n","export async function delay(milliseconds: number): Promise<void>\n{\n return new Promise<void>((resolve, reject) => setTimeout(resolve, milliseconds));\n}\n\nexport async function nextAnimationFrame(): Promise<void>\n{\n return new Promise<void>((resolve, reject) => requestAnimationFrame(() => resolve()));\n}\n","import { SmartIterator } from \"../models/index.js\";\n\nexport enum DateUnit\n{\n Second = 1000,\n Minute = 60 * Second,\n Hour = 60 * Minute,\n Day = 24 * Hour,\n Week = 7 * Day,\n Month = 30 * Day,\n Year = 365 * Day\n}\n\nexport function dateDifference(start: Date, end: Date, unit = DateUnit.Day): number\n{\n return Math.floor((end.getTime() - start.getTime()) / unit);\n}\n\nexport function dateRange(start: Date, end: Date, offset = DateUnit.Day): SmartIterator<Date>\n{\n return new SmartIterator<Date>(function* ()\n {\n const endTime = end.getTime();\n\n let unixTime: number = start.getTime();\n while (unixTime < endTime)\n {\n yield new Date(unixTime);\n\n unixTime += offset;\n }\n });\n}\n\nexport function dateRound(date: Date, unit = DateUnit.Day): Date\n{\n return new Date(Math.floor(date.getTime() / unit) * unit);\n}\n","export async function loadScript(scriptUrl: string, scriptType = \"text/javascript\"): Promise<void>\n{\n return new Promise<void>((resolve, reject) =>\n {\n const script = document.createElement(\"script\");\n\n script.async = true;\n script.defer = true;\n script.src = scriptUrl;\n script.type = scriptType;\n\n script.onload = () => resolve();\n script.onerror = () => reject();\n\n document.body.appendChild(script);\n });\n}\n","import { SmartIterator } from \"../models/index.js\";\n\nexport function count<T>(elements: Iterable<T>): number\n{\n if (Array.isArray(elements)) { return elements.length; }\n\n let _count = 0;\n for (const _ of elements) { _count += 1; }\n\n return _count;\n}\n\nexport function enumerate<T>(elements: Iterable<T>): SmartIterator<[number, T]>\n{\n return new SmartIterator<[number, T]>(function* ()\n {\n let index = 0;\n\n for (const element of elements)\n {\n yield [index, element];\n\n index += 1;\n }\n });\n}\n\nexport function range(end: number): SmartIterator<number>;\nexport function range(start: number, end: number): SmartIterator<number>;\nexport function range(start: number, end: number, step: number): SmartIterator<number>;\nexport function range(start: number, end?: number, step = 1): SmartIterator<number>\n{\n return new SmartIterator<number>(function* ()\n {\n if (end === undefined)\n {\n end = start;\n start = 0;\n }\n\n if (start > end) { step = step ?? -1; }\n\n for (let index = start; index < end; index += step) { yield index; }\n });\n}\n\nexport function shuffle<T>(iterable: Iterable<T>): T[]\n{\n const array = Array.from(iterable);\n\n for (let index = array.length - 1; index > 0; index -= 1)\n {\n const jndex = Math.floor(Math.random() * (index + 1));\n\n [array[index], array[jndex]] = [array[jndex], array[index]];\n }\n\n return array;\n}\n\nexport function unique<T>(elements: Iterable<T>): SmartIterator<T>\n{\n return new SmartIterator<T>(function* ()\n {\n const values = new Set<T>();\n\n for (const element of elements)\n {\n if (values.has(element)) { continue; }\n\n values.add(element);\n\n yield element;\n }\n });\n}\n\nexport function zip<T, U>(first: Iterable<T>, second: Iterable<U>): SmartIterator<[T, U]>\n{\n return new SmartIterator<[T, U]>(function* ()\n {\n const firstIterator = first[Symbol.iterator]();\n const secondIterator = second[Symbol.iterator]();\n\n while (true)\n {\n const firstResult = firstIterator.next();\n const secondResult = secondIterator.next();\n\n if ((firstResult.done) || (secondResult.done)) { break; }\n\n yield [firstResult.value, secondResult.value];\n }\n });\n}\n","import { zip } from \"./iterator.js\";\n\nexport function average<T extends number>(values: Iterable<T>): number;\nexport function average<T extends number>(values: Iterable<T>, weights: Iterable<number>): number;\nexport function average<T extends number>(values: Iterable<T>, weights?: Iterable<number>): number\n{\n if (weights === undefined)\n {\n let _sum = 0;\n let _count = 0;\n\n for (const value of values)\n {\n _sum += value;\n _count += 1;\n }\n\n return _sum / _count;\n }\n\n let _sum = 0;\n let _count = 0;\n\n for (const [value, weight] of zip(values, weights))\n {\n _sum += value * weight;\n _count += weight;\n }\n\n return _sum / _count;\n}\n\nexport function hash(value: string): number\n{\n let hashedValue = 0;\n for (let index = 0; index < value.length; index += 1)\n {\n const char = value.charCodeAt(index);\n\n hashedValue = ((hashedValue << 5) - hashedValue) + char;\n hashedValue |= 0;\n }\n\n return hashedValue;\n}\n\nexport function sum<T extends number>(values: Iterable<T>): number\n{\n let _sum = 0;\n for (const value of values) { _sum += value; }\n\n return _sum;\n}\n","export function capitalize(value: string): string\n{\n return `${value.charAt(0).toUpperCase()}${value.slice(1)}`;\n}\n","export const VERSION = \"1.3.4\";\n\nexport {\n AggregatedIterator,\n Aggregator,\n DeferredPromise,\n Exception,\n JsonStorage,\n ReducedIterator,\n SmartIterator,\n SmartPromise,\n Subscribers\n\n} from \"./models/index.js\";\n\nexport {\n average,\n capitalize,\n count,\n delay,\n dateDifference,\n dateRange,\n dateRound,\n DateUnit,\n hash,\n loadScript,\n nextAnimationFrame,\n Random,\n range,\n shuffle,\n sum,\n unique,\n zip\n\n} from \"./utils/index.js\";\n\nexport type {\n Constructor,\n FulfilledHandler,\n GeneratorFunction,\n Interval,\n Iteratee,\n MaybePromise,\n PromiseExecutor,\n PromiseRejecter,\n PromiseResolver,\n Reducer,\n RejectedHandler,\n Timeout\n\n} from \"./types.js\";\n"],"names":["Exception","error","exc","message","cause","name","SmartIterator","argument","__publicField","value","predicate","index","result","iterator","iteratee","reducer","initialValue","accumulator","values","ReducedIterator","elements","key","element","AggregatedIterator","indexes","_","accumulators","keys","counters","count","firsts","lasts","groups","Aggregator","JsonStorage","preferPersistence","storage","propertyName","defaultValue","propertyValue","newValue","encodedValue","persistent","Subscribers","subscriber","args","DeferredPromise","onFulfilled","onRejected","_resolve","_reject","executor","resolve","reject","_onFulfilled","_onRejected","reason","onFinally","promise","SmartPromise","Random","ratio","min","max","delay","milliseconds","nextAnimationFrame","DateUnit","dateDifference","start","end","unit","dateRange","offset","endTime","unixTime","dateRound","date","loadScript","scriptUrl","scriptType","script","_count","range","step","shuffle","iterable","array","jndex","unique","zip","first","second","firstIterator","secondIterator","firstResult","secondResult","average","weights","_sum","weight","hash","hashedValue","char","sum","capitalize","VERSION"],"mappings":";;;AAAA,MAAqBA,UAAkB,MACvC;AAAA,EACI,OAAc,YAAYC,GAC1B;AACI,QAAIA,aAAiBD;AAEV,aAAAC;AAEX,QAAIA,aAAiB,OACrB;AACI,YAAMC,IAAM,IAAIF,EAAUC,EAAM,OAAO;AAEvC,aAAAC,EAAI,QAAQD,EAAM,OAClBC,EAAI,OAAOD,EAAM,MAEVC;AAAA,IACX;AAEA,WAAO,IAAIF,EAAU,GAAGC,CAAK,EAAE;AAAA,EACnC;AAAA,EAEO,YAAYE,GAAiBC,GAAiBC,IAAO,aAC5D;AACI,UAAMF,CAAO,GAEb,KAAK,QAAQC,GACb,KAAK,OAAOC,GAERD,MAEIA,aAAiB,QAEjB,KAAK,SAAS;AAAA;AAAA,YAAiBA,EAAM,KAAK,KAI1C,KAAK,SAAS;AAAA;AAAA,YAAiBA,CAAK;AAAA,EAGhD;AACJ;ACtCA,MAAqBE,EACrB;AAAA,EAUW,YAAYC,GACnB;AAVU,IAAAC,EAAA;AAEH,IAAAA,EAAA;AACA,IAAAA,EAAA;AAQH,IAAID,aAAoB,WAEpB,KAAK,YAAYA,MAEZ,OAAO,YAAYA,IAExB,KAAK,YAAYA,EAAS,OAAO,QAAQ,EAAE,IAI3C,KAAK,YAAYA,GAGjB,KAAK,UAAU,WAAU,KAAK,SAAS,CAACE,MAAc,KAAK,UAAU,OAAQA,CAAK,IAClF,KAAK,UAAU,UAAS,KAAK,QAAQ,CAACR,MAAoB,KAAK,UAAU,MAAOA,CAAK;AAAA,EAC7F;AAAA,EAEO,MAAMS,GACb;AACI,QAAIC,IAAQ;AAGZ,eACA;AACU,YAAAC,IAAS,KAAK,UAAU,KAAK;AAEnC,UAAIA,EAAO;AAAe,eAAA;AAC1B,UAAI,CAAEF,EAAUE,EAAO,OAAOD,CAAK;AAAa,eAAA;AAEvC,MAAAA,KAAA;AAAA,IACb;AAAA,EACJ;AAAA,EACO,KAAKD,GACZ;AACI,QAAIC,IAAQ;AAGZ,eACA;AACU,YAAAC,IAAS,KAAK,UAAU,KAAK;AAEnC,UAAIA,EAAO;AAAe,eAAA;AAC1B,UAAIF,EAAUE,EAAO,OAAOD,CAAK;AAAY,eAAA;AAEpC,MAAAA,KAAA;AAAA,IACb;AAAA,EACJ;AAAA,EAEO,OAAOD,GACd;AACI,UAAMG,IAAW,KAAK;AAEf,WAAA,IAAIP,EAAoB,aAC/B;AACI,UAAIK,IAAQ;AAEZ,iBACA;AACU,cAAAC,IAASC,EAAS;AAExB,YAAID,EAAO;AAAQ,iBAAOA,EAAO;AACjC,QAAIF,EAAUE,EAAO,OAAOD,CAAK,MAAK,MAAMC,EAAO,QAE1CD,KAAA;AAAA,MACb;AAAA,IAAA,CACH;AAAA,EACL;AAAA,EACO,IAAOG,GACd;AACI,UAAMD,IAAW,KAAK;AAEf,WAAA,IAAIP,EAAoB,aAC/B;AACI,UAAIK,IAAQ;AAEZ,iBACA;AACU,cAAAC,IAASC,EAAS;AACxB,YAAID,EAAO;AAAQ,iBAAOA,EAAO;AAE3B,cAAAE,EAASF,EAAO,OAAOD,CAAK,GAEzBA,KAAA;AAAA,MACb;AAAA,IAAA,CACH;AAAA,EACL;AAAA,EAGO,OAAUI,GAAwBC,GACzC;AACI,QAAIL,IAAQ,GACRM,IAAcD;AAClB,QAAIC,MAAgB,QACpB;AACU,YAAAL,IAAS,KAAK,UAAU,KAAK;AACnC,UAAIA,EAAO;AAAc,cAAA,IAAI,UAAU,gDAAgD;AAEvF,MAAAK,IAAeL,EAAO,OACbD,KAAA;AAAA,IACb;AAGA,eACA;AACU,YAAAC,IAAS,KAAK,UAAU,KAAK;AACnC,UAAIA,EAAO;AAAe,eAAAK;AAE1B,MAAAA,IAAcF,EAAQE,GAAaL,EAAO,OAAOD,CAAK,GAE7CA,KAAA;AAAA,IACb;AAAA,EACJ;AAAA,EAEO,YACP;AACW,WAAA,KAAK,IAAI,CAACF,GAAOE,MAAU,CAACA,GAAOF,CAAK,CAAC;AAAA,EACpD;AAAA,EACO,SACP;AACI,UAAMI,IAAW,KAAK;AAEf,WAAA,IAAIP,EAAoB,aAC/B;AACU,YAAAY,wBAAa;AAEnB,iBACA;AACU,cAAAN,IAASC,EAAS;AAExB,YAAID,EAAO;AAAQ,iBAAOA,EAAO;AACjC,QAAIM,EAAO,IAAIN,EAAO,KAAK,MAEpBM,EAAA,IAAIN,EAAO,KAAK,GAEvB,MAAMA,EAAO;AAAA,MACjB;AAAA,IAAA,CACH;AAAA,EACL;AAAA,EAEO,QACP;AACI,QAAID,IAAQ;AAGZ,eACA;AAEI,UADe,KAAK,UAAU,KAAK,EACxB;AAAe,eAAAA;AAEjB,MAAAA,KAAA;AAAA,IACb;AAAA,EACJ;AAAA,EACO,QAAQG,GACf;AACI,QAAIH,IAAQ;AAGZ,eACA;AACU,YAAAC,IAAS,KAAK,UAAU,KAAK;AACnC,UAAIA,EAAO;AAAQ;AAEV,MAAAE,EAAAF,EAAO,OAAOD,CAAK,GAEnBA,KAAA;AAAA,IACb;AAAA,EACJ;AAAA,EAEO,QAAQO,GACf;AACI,WAAO,KAAK,UAAU,KAAK,GAAGA,CAAM;AAAA,EACxC;AAAA,EAEO,UACP;AACW,WAAA,MAAM,KAAK,IAAmB;AAAA,EACzC;AAAA,EAEA,CAAQ,OAAO,QAAQ,IAA4B;AAAS,WAAA;AAAA,EAAM;AACtE;AC7LA,MAAqBC,EACrB;AAAA,EAOW,YAAYZ,GACnB;AAPU,IAAAC,EAAA;AAQD,SAAA,YAAY,IAAIF,EAAcC,CAAQ;AAAA,EAC/C;AAAA,EAEO,OAAOG,GACd;AACI,UAAMU,IAAW,KAAK;AAEf,WAAA,IAAID,EAAgB,aAC3B;AACe,iBAAA,CAACR,GAAO,CAACU,GAAKC,CAAO,CAAC,KAAKF,EAAS;AAE3C,QAAIV,EAAUW,GAAKC,GAASX,CAAK,MAEvB,MAAA,CAACU,GAAKC,CAAO;AAAA,IAE3B,CACH;AAAA,EACL;AAAA,EACO,IAAOR,GACd;AACI,UAAMM,IAAW,KAAK;AAEf,WAAA,IAAID,EAAgB,aAC3B;AACe,iBAAA,CAACR,GAAO,CAACU,GAAKC,CAAO,CAAC,KAAKF,EAAS;AAE3C,cAAM,CAACC,GAAKP,EAASO,GAAKC,GAASX,CAAK,CAAC;AAAA,IAC7C,CACH;AAAA,EACL;AAAA,EAEO,UACP;AACI,WAAO,MAAM,KAAK,KAAK,MAAM,EAAE,QAAQ;AAAA,EAC3C;AAAA,EACO,QACP;AACI,WAAO,IAAI,IAAI,KAAK,UAAU,QAAS,CAAA;AAAA,EAC3C;AAAA,EACO,WACP;AACI,WAAO,OAAO,YAAY,KAAK,UAAU,QAAS,CAAA;AAAA,EACtD;AACJ;ACpDA,MAAqBY,EACrB;AAAA,EAOW,YAAYhB,GACnB;AAPU,IAAAC,EAAA;AAQD,SAAA,YAAY,IAAIF,EAAcC,CAAQ;AAAA,EAC/C;AAAA,EAEO,MAAMG,GACb;AACU,UAAAc,wBAAc;AAEpB,eAAW,CAACH,GAAKC,CAAO,KAAK,KAAK,WAClC;AACU,YAAA,CAACX,GAAOC,CAAM,IAAIY,EAAQ,IAAIH,CAAG,KAAK,CAAC,GAAG,EAAI;AAEpD,MAAMT,KAEEY,EAAA,IAAIH,GAAK,CAACV,IAAQ,GAAGD,EAAUW,GAAKC,GAASX,CAAK,CAAC,CAAC;AAAA,IAChE;AAEO,WAAA,IAAIQ,EAAgB,aAC3B;AACI,iBAAW,CAACE,GAAK,CAACI,GAAGb,CAAM,CAAC,KAAKY;AAEvB,cAAA,CAACH,GAAKT,CAAM;AAAA,IACtB,CACH;AAAA,EACL;AAAA,EACO,KAAKF,GACZ;AACU,UAAAc,wBAAc;AAEpB,eAAW,CAACH,GAAKC,CAAO,KAAK,KAAK,WAClC;AACU,YAAA,CAACX,GAAOC,CAAM,IAAIY,EAAQ,IAAIH,CAAG,KAAK,CAAC,GAAG,EAAK;AAErD,MAAIT,KAEIY,EAAA,IAAIH,GAAK,CAACV,IAAQ,GAAGD,EAAUW,GAAKC,GAASX,CAAK,CAAC,CAAC;AAAA,IAChE;AAEO,WAAA,IAAIQ,EAAgB,aAC3B;AACI,iBAAW,CAACE,GAAK,CAACI,GAAGb,CAAM,CAAC,KAAKY;AAEvB,cAAA,CAACH,GAAKT,CAAM;AAAA,IACtB,CACH;AAAA,EACL;AAAA,EAEO,OAAOF,GACd;AACI,UAAMU,IAAW,KAAK;AAEf,WAAA,IAAIG,EAAmB,aAC9B;AACU,YAAAC,wBAAc;AAEpB,iBAAW,CAACH,GAAKC,CAAO,KAAKF,GAC7B;AACI,cAAMT,IAAQa,EAAQ,IAAIH,CAAG,KAAK;AAE1B,QAAAG,EAAA,IAAIH,GAAKV,IAAQ,CAAC,GAEtBD,EAAUW,GAAKC,GAASX,CAAK,MAAW,MAAA,CAACU,GAAKC,CAAO;AAAA,MAC7D;AAAA,IAAA,CACH;AAAA,EACL;AAAA,EACO,IAAOR,GACd;AACI,UAAMM,IAAW,KAAK;AAEf,WAAA,IAAIG,EAAmB,aAC9B;AACU,YAAAC,wBAAc;AAEpB,iBAAW,CAACH,GAAKC,CAAO,KAAKF,GAC7B;AACI,cAAMT,IAAQa,EAAQ,IAAIH,CAAG,KAAK;AAE1B,QAAAG,EAAA,IAAIH,GAAKV,IAAQ,CAAC,GAE1B,MAAM,CAACU,GAAKP,EAASO,GAAKC,GAASX,CAAK,CAAC;AAAA,MAC7C;AAAA,IAAA,CACH;AAAA,EACL;AAAA,EAGO,OAAUI,GAA8BC,GAC/C;AACU,UAAAU,wBAAmB;AAEzB,eAAW,CAACL,GAAKC,CAAO,KAAK,KAAK,WAClC;AACQ,UAAAX,GACAM;AAEA,UAAAS,EAAa,IAAIL,CAAG;AAEpB,SAACV,GAAOM,CAAW,IAAIS,EAAa,IAAIL,CAAG,GAElCV,KAAA;AAAA,eAEJK,MAAiB;AAEd,QAAAL,IAAA,GACRM,IAAcD,EAAaK,CAAG;AAAA,WAGlC;AACI,QAAAK,EAAa,IAAIL,GAAK,CAAC,GAAIC,CAAwB,CAAC;AAEpD;AAAA,MACJ;AAEA,MAAAL,IAAcF,EAAQM,GAAKJ,GAAaK,GAASX,CAAK,GAEtDe,EAAa,IAAIL,GAAK,CAACV,GAAOM,CAAW,CAAC;AAAA,IAC9C;AAEO,WAAA,IAAIE,EAAgB,aAC3B;AACI,iBAAW,CAACE,GAAK,CAACI,GAAGR,CAAW,CAAC,KAAKS;AAE5B,cAAA,CAACL,GAAKJ,CAAW;AAAA,IAC3B,CACH;AAAA,EACL;AAAA,EAEO,SACP;AACI,UAAMG,IAAW,KAAK;AAEf,WAAA,IAAIG,EAAmB,aAC9B;AACU,YAAAI,wBAAW;AAEjB,iBAAW,CAACN,GAAKC,CAAO,KAAKF,GAC7B;AACI,cAAMF,IAASS,EAAK,IAAIN,CAAG,yBAAS;AAEhC,QAAAH,EAAO,IAAII,CAAO,MAEtBJ,EAAO,IAAII,CAAO,GACbK,EAAA,IAAIN,GAAKH,CAAM,GAEd,MAAA,CAACG,GAAKC,CAAO;AAAA,MACvB;AAAA,IAAA,CACH;AAAA,EACL;AAAA,EAEO,QACP;AACU,UAAAM,wBAAe;AAErB,eAAW,CAACP,CAAG,KAAK,KAAK,WACzB;AACI,YAAMQ,IAAQD,EAAS,IAAIP,CAAG,KAAK;AAE1B,MAAAO,EAAA,IAAIP,GAAKQ,IAAQ,CAAC;AAAA,IAC/B;AAEO,WAAA,IAAIV,EAAgB,aAC3B;AACI,iBAAW,CAACE,GAAKQ,CAAK,KAAKD;AAEjB,cAAA,CAACP,GAAKQ,CAAK;AAAA,IACrB,CACH;AAAA,EACL;AAAA,EACO,QACP;AACU,UAAAC,wBAAa;AAEnB,eAAW,CAACT,GAAKC,CAAO,KAAK,KAAK;AAE1B,MAAAQ,EAAO,IAAIT,CAAG,KAEXS,EAAA,IAAIT,GAAKC,CAAO;AAGpB,WAAA,IAAIH,EAAgB,aAC3B;AACI,iBAAW,CAACE,GAAKC,CAAO,KAAKQ;AAEnB,cAAA,CAACT,GAAKC,CAAO;AAAA,IACvB,CACH;AAAA,EACL;AAAA,EACO,OACP;AACU,UAAAS,wBAAY;AAElB,eAAW,CAACV,GAAKC,CAAO,KAAK,KAAK;AAExB,MAAAS,EAAA,IAAIV,GAAKC,CAAO;AAGnB,WAAA,IAAIH,EAAgB,aAC3B;AACI,iBAAW,CAACE,GAAKC,CAAO,KAAKS;AAEnB,cAAA,CAACV,GAAKC,CAAO;AAAA,IACvB,CACH;AAAA,EACL;AAAA,EAEO,UACP;AACI,WAAO,MAAM,KAAK,KAAK,MAAM,EAAE,QAAQ;AAAA,EAC3C;AAAA,EACO,QACP;AACU,UAAAU,wBAAa;AAEnB,eAAW,CAACX,GAAKC,CAAO,KAAK,KAAK,WAClC;AACI,YAAMb,IAAQuB,EAAO,IAAIX,CAAG,KAAK,CAAA;AAEjC,MAAAZ,EAAM,KAAKa,CAAO,GACXU,EAAA,IAAIX,GAAKZ,CAAK;AAAA,IACzB;AAEO,WAAAuB;AAAA,EACX;AAAA,EACO,WACP;AACI,UAAMA,IAAS,CAAA;AAEf,eAAW,CAACX,GAAKC,CAAO,KAAK,KAAK,WAClC;AACI,YAAMb,IAAQuB,EAAOX,CAAG,KAAK,CAAA;AAE7B,MAAAZ,EAAM,KAAKa,CAAO,GAClBU,EAAOX,CAAG,IAAIZ;AAAA,IAClB;AAEO,WAAAuB;AAAA,EACX;AACJ;ACrPA,MAAqBC,EACrB;AAAA,EAOW,YAAY1B,GACnB;AAPU,IAAAC,EAAA;AAQD,SAAA,YAAY,IAAIF,EAAcC,CAAQ;AAAA,EAC/C;AAAA,EAEO,OAAOG,GACd;AACI,WAAO,IAAIuB,EAAW,KAAK,UAAU,OAAOvB,CAAS,CAAC;AAAA,EAC1D;AAAA,EACO,IAAOI,GACd;AACI,WAAO,IAAImB,EAAW,KAAK,UAAU,IAAInB,CAAQ,CAAC;AAAA,EACtD;AAAA,EAEO,SACP;AACI,WAAO,IAAImB,EAAW,KAAK,UAAU,OAAQ,CAAA;AAAA,EACjD;AAAA,EAEO,MAA6BnB,GACpC;AACI,WAAO,IAAIS,EAAmB,KAAK,UAAU,IAAI,CAACD,GAASX,MAIhD,CAFKG,EAASQ,GAASX,CAAK,GAEtBW,CAAO,CACvB,CAAC;AAAA,EACN;AACJ;AClCA,MAAqBY,EACrB;AAAA,EAMW,YAAYC,IAAoB,IACvC;AANU,IAAA3B,EAAA;AAEA,IAAAA,EAAA;AACA,IAAAA,EAAA;AAIN,SAAK,qBAAqB2B,GAE1B,KAAK,YAAY,OAAO,gBACxB,KAAK,cAAc,OAAO;AAAA,EAC9B;AAAA,EAKU,KAAQC,GAAkBC,GAAsBC,GAC1D;AACU,UAAAC,IAAgBH,EAAQ,QAAQC,CAAY;AAClD,QAAIE;AAGA,UAAA;AACW,eAAA,KAAK,MAAMA,CAAa;AAAA,cAGnC;AAEY,gBAAA;AAAA,UACJ,QAAQA,CAAa,gBAAgBF,CAAY;AAAA,QAAA,GAGrDD,EAAQ,WAAWC,CAAY;AAAA,MACnC;AAGG,WAAAC;AAAA,EACX;AAAA,EACU,KAAQF,GAAkBC,GAAsBG,GAC1D;AACU,UAAAC,IAAe,KAAK,UAAUD,CAAQ;AAC5C,IAAIC,IAEQL,EAAA,QAAQC,GAAcI,CAAY,IAI1CL,EAAQ,WAAWC,CAAY;AAAA,EAEvC;AAAA,EAcO,IAAOA,GAAsBC,GAAkBI,IAAa,KAAK,oBACxE;AACI,UAAMN,IAAUM,IAAa,KAAK,cAAc,KAAK;AAErD,WAAO,KAAK,KAAQN,GAASC,GAAcC,CAAY;AAAA,EAC3D;AAAA,EAYO,OAAUD,GAAsBC,GACvC;AACI,WAAO,KAAK,KAAQ,KAAK,WAAWD,GAAcC,CAAY;AAAA,EAClE;AAAA,EAaO,SAAYD,GAAsBC,GACzC;AACI,WAAO,KAAK,OAAUD,CAAY,KAAK,KAAK,KAAQA,GAAcC,CAAY;AAAA,EAClF;AAAA,EAYO,KAAQD,GAAsBC,GACrC;AACI,WAAO,KAAK,KAAQ,KAAK,aAAaD,GAAcC,CAAY;AAAA,EACpE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAUO,IAAID,GAAsBK,GACjC;AAGW,YAFSA,IAAa,KAAK,cAAc,KAAK,WAEtC,QAAQL,CAAY,MAAM;AAAA,EAC7C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQO,MAAMA,GACb;AACI,WAAO,KAAK,UAAU,QAAQA,CAAY,MAAM;AAAA,EACpD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EASO,KAAKA,GACZ;AACI,WAAO,KAAK,MAAMA,CAAY,KAAK,KAAK,OAAOA,CAAY;AAAA,EAC/D;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQO,OAAOA,GACd;AACI,WAAO,KAAK,YAAY,QAAQA,CAAY,MAAM;AAAA,EACtD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAUO,IAAOA,GAAsBG,GAAcE,IAAa,KAAK,oBACpE;AACI,UAAMN,IAAUM,IAAa,KAAK,cAAc,KAAK;AAEhD,SAAA,KAAQN,GAASC,GAAcG,CAAQ;AAAA,EAChD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQO,SAAYH,GAAsBG,GACzC;AACI,SAAK,KAAQ,KAAK,WAAWH,GAAcG,CAAQ;AAAA,EACvD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQO,MAASH,GAAsBG,GACtC;AACI,SAAK,KAAQ,KAAK,aAAaH,GAAcG,CAAQ;AAAA,EACzD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOO,OAAOH,GACd;AACS,SAAA,UAAU,WAAWA,CAAY;AAAA,EAC1C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMO,MAAMA,GACb;AACS,SAAA,YAAY,WAAWA,CAAY;AAAA,EAC5C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAMO,MAAMA,GACb;AACS,SAAA,UAAU,WAAWA,CAAY,GACjC,KAAA,YAAY,WAAWA,CAAY;AAAA,EAC5C;AACJ;AC9OA,MAAqBM,EACrB;AAAA,EAGW,cACP;AAHU,IAAAnC,EAAA;AAIN,SAAK,eAAe;EACxB;AAAA,EAEO,IAAIoC,GACX;AACS,SAAA,aAAa,KAAKA,CAAU;AAAA,EACrC;AAAA,EACO,OAAOA,GACd;AACI,UAAMjC,IAAQ,KAAK,aAAa,QAAQiC,CAAU;AAClD,QAAIjC,IAAQ;AAEF,YAAA,IAAIX,EAAU,8DAA8D;AAGjF,SAAA,aAAa,OAAOW,GAAO,CAAC;AAAA,EACrC;AAAA,EAEO,QAAQkC,GACf;AACW,WAAA,KAAK,aACP,QACA,IAAI,CAACD,MAAeA,EAAW,GAAGC,CAAI,CAAC;AAAA,EAChD;AACJ;ACvBA,MAAqBC,EACrB;AAAA,EAUW,YAAYC,GAA6CC,GAChE;AAVU,IAAAxC,EAAA;AACA,IAAAA,EAAA;AACA,IAAAA,EAAA;AAEA,IAAAA,EAAA;AACA,IAAAA,EAAA;AAEA,IAAAA,EAAA;AAIN,SAAK,aAAa,IAClB,KAAK,eAAe,IACpB,KAAK,cAAc;AAEf,QAAAyC,GACAC;AAEE,UAAAC,IAAkC,CAACC,GAASC,MAClD;AACe,MAAAJ,IAAAG,GACDF,IAAAG;AAAA,IAAA;AAGV,QAAAC;AACJ,IAAIP,IAEAO,IAAe,CAAC7C,OAEZ,KAAK,aAAa,IAClB,KAAK,eAAe,IAEbsC,EAAatC,CAAK,KAK7B6C,IAAe,CAAC7C,OAEZ,KAAK,aAAa,IAClB,KAAK,eAAe,IAEZA;AAIZ,QAAA8C;AACJ,IAAIP,IAEAO,IAAc,CAACC,OAEX,KAAK,aAAa,IAClB,KAAK,cAAc,IAEZR,EAAYQ,CAAM,KAK7BD,IAAc,CAACC,OAEX,KAAK,aAAa,IAClB,KAAK,cAAc,IAEXA,IAIhB,KAAK,WAAW,IAAI,QAAWL,CAAQ,EAClC,KAAKG,GAAcC,CAAW,GAEnC,KAAK,WAAWN,GAChB,KAAK,UAAUC;AAAA,EACnB;AAAA,EAEA,IAAW,YAAqB;AAAE,WAAO,KAAK;AAAA,EAAY;AAAA,EAC1D,IAAW,cAAuB;AAAE,WAAO,KAAK;AAAA,EAAc;AAAA,EAC9D,IAAW,aAAsB;AAAE,WAAO,KAAK;AAAA,EAAa;AAAA,EAE5D,IAAW,UAA8B;AAAE,WAAO,KAAK;AAAA,EAAU;AAAA,EACjE,IAAW,SAA6B;AAAE,WAAO,KAAK;AAAA,EAAS;AAAA,EAExD,KACHH,GACAC,GACJ;AACI,WAAO,KAAK,SAAS,KAAKD,GAAaC,CAAU;AAAA,EACrD;AAAA,EACO,MAAaA,GACpB;AACW,WAAA,KAAK,SAAS,MAAMA,CAAU;AAAA,EACzC;AAAA,EACO,QAAQS,GACf;AACW,WAAA,KAAK,SAAS,QAAQA,CAAS;AAAA,EAC1C;AAAA,EAEO,MAAMC,GACb;AACI,WAAAA,EAAQ,KAAK,KAAK,SAAS,KAAK,MAAM,GAE/B;AAAA,EACX;AAAA,EAEA,KAAY,OAAO,WAAW,IAAI;AAAS,WAAA;AAAA,EAAmB;AAClE;AClHA,MAAqBC,EACrB;AAAA,EAOW,YAAYR,GACnB;AAPU,IAAA3C,EAAA;AACA,IAAAA,EAAA;AACA,IAAAA,EAAA;AAEA,IAAAA,EAAA;AAIN,SAAK,aAAa,IAClB,KAAK,eAAe,IACpB,KAAK,cAAc;AAEb,UAAAyC,IAAW,CAACrC,OAEd,KAAK,aAAa,IAClB,KAAK,eAAe,IAEbA,IAELsC,IAAU,CAACM,OAEb,KAAK,aAAa,IAClB,KAAK,cAAc,IAEZA;AAGX,SAAK,WAAW,IAAI,QAAWL,CAAQ,EAClC,KAAKF,GAAUC,CAAO;AAAA,EAC/B;AAAA,EAEA,IAAW,YAAqB;AAAE,WAAO,KAAK;AAAA,EAAY;AAAA,EAC1D,IAAW,cAAuB;AAAE,WAAO,KAAK;AAAA,EAAc;AAAA,EAC9D,IAAW,aAAsB;AAAE,WAAO,KAAK;AAAA,EAAa;AAAA,EAErD,KACHH,GACAC,GACJ;AACI,WAAO,KAAK,SAAS,KAAKD,GAAaC,CAAU;AAAA,EACrD;AAAA,EACO,MAAaA,GACpB;AACW,WAAA,KAAK,SAAS,MAAMA,CAAU;AAAA,EACzC;AAAA,EACO,QAAQS,GACf;AACW,WAAA,KAAK,SAAS,QAAQA,CAAS;AAAA,EAC1C;AAAA,EAEA,KAAY,OAAO,WAAW,IAAI;AAAS,WAAA;AAAA,EAAgB;AAC/D;ACvDA,MAAqBG,EACrB;AAAA,EACI,OAAc,QAAQC,IAAgB,KACtC;AACY,WAAA,KAAK,OAAW,IAAAA;AAAA,EAC5B;AAAA,EAIA,OAAc,QAAQC,GAAaC,GACnC;AACI,WAEW,KAAK,MAFZA,MAAQ,SAEU,KAAK,WAAWD,IAGpB,KAAK,OAAY,KAAAC,IAAMD,KAAOA,CAHP;AAAA,EAI7C;AAAA,EAIA,OAAc,QAAQA,GAAaC,GACnC;AACI,WAAIA,MAAQ,SAEA,KAAK,OAAW,IAAAD,IAGpB,KAAK,OAAY,KAAAC,IAAMD,KAAOA;AAAA,EAC1C;AAAA,EAEA,OAAc,OAAU1C,GACxB;AACI,WAAOA,EAAS,KAAK,QAAQA,EAAS,MAAM,CAAC;AAAA,EACjD;AAAA;AAAA,EAGQ,cAAc;AAAA,EAAE;AAC5B;ACtCA,eAAsB4C,EAAMC,GAC5B;AACW,SAAA,IAAI,QAAc,CAACb,GAASC,MAAW,WAAWD,GAASa,CAAY,CAAC;AACnF;AAEA,eAAsBC,IACtB;AACW,SAAA,IAAI,QAAc,CAACd,GAASC,MAAW,sBAAsB,MAAMD,EAAS,CAAA,CAAC;AACxF;ACNY,IAAAe,sBAAAA,OAERA,EAAAA,EAAA,SAAS,GAAT,IAAA,UACAA,EAAAA,EAAA,SAAS,GAAT,IAAA,UACAA,EAAAA,EAAA,OAAO,IAAP,IAAA,QACAA,EAAAA,EAAA,MAAM,KAAN,IAAA,OACAA,EAAAA,EAAA,OAAO,MAAP,IAAA,QACAA,EAAAA,EAAA,QAAQ,MAAR,IAAA,SACAA,EAAAA,EAAA,OAAO,OAAP,IAAA,QARQA,IAAAA,KAAA,CAAA,CAAA;AAWL,SAASC,EAAeC,GAAaC,GAAWC,IAAO,OAC9D;AACW,SAAA,KAAK,OAAOD,EAAI,YAAYD,EAAM,aAAaE,CAAI;AAC9D;AAEO,SAASC,EAAUH,GAAaC,GAAWG,IAAS,OAC3D;AACW,SAAA,IAAInE,EAAoB,aAC/B;AACU,UAAAoE,IAAUJ,EAAI;AAEhB,QAAAK,IAAmBN,EAAM;AAC7B,WAAOM,IAAWD;AAER,YAAA,IAAI,KAAKC,CAAQ,GAEXA,KAAAF;AAAA,EAChB,CACH;AACL;AAEgB,SAAAG,EAAUC,GAAYN,IAAO,OAC7C;AACW,SAAA,IAAI,KAAK,KAAK,MAAMM,EAAK,YAAYN,CAAI,IAAIA,CAAI;AAC5D;ACrCsB,eAAAO,EAAWC,GAAmBC,IAAa,mBACjE;AACI,SAAO,IAAI,QAAc,CAAC5B,GAASC,MACnC;AACU,UAAA4B,IAAS,SAAS,cAAc,QAAQ;AAE9C,IAAAA,EAAO,QAAQ,IACfA,EAAO,QAAQ,IACfA,EAAO,MAAMF,GACbE,EAAO,OAAOD,GAEPC,EAAA,SAAS,MAAM7B,KACf6B,EAAA,UAAU,MAAM5B,KAEd,SAAA,KAAK,YAAY4B,CAAM;AAAA,EAAA,CACnC;AACL;ACdO,SAASpD,EAAST,GACzB;AACQ,MAAA,MAAM,QAAQA,CAAQ;AAAK,WAAOA,EAAS;AAE/C,MAAI8D,IAAS;AACb,aAAWzD,KAAKL;AAAsB,IAAA8D,KAAA;AAE/B,SAAAA;AACX;AAoBO,SAASC,EAAMd,GAAeC,GAAcc,IAAO,GAC1D;AACW,SAAA,IAAI9E,EAAsB,aACjC;AACI,IAAIgE,MAAQ,WAEFA,IAAAD,GACEA,IAAA,IAGRA,IAAQC,MAAOc,IAAOA,KAAQ;AAElC,aAASzE,IAAQ0D,GAAO1D,IAAQ2D,GAAK3D,KAASyE;AAAc,YAAAzE;AAAA,EAAO,CACtE;AACL;AAEO,SAAS0E,EAAWC,GAC3B;AACU,QAAAC,IAAQ,MAAM,KAAKD,CAAQ;AAEjC,WAAS3E,IAAQ4E,EAAM,SAAS,GAAG5E,IAAQ,GAAGA,KAAS,GACvD;AACI,UAAM6E,IAAQ,KAAK,MAAM,KAAK,YAAY7E,IAAQ,EAAE;AAEpD,KAAC4E,EAAM5E,CAAK,GAAG4E,EAAMC,CAAK,CAAC,IAAI,CAACD,EAAMC,CAAK,GAAGD,EAAM5E,CAAK,CAAC;AAAA,EAC9D;AAEO,SAAA4E;AACX;AAEO,SAASE,EAAUrE,GAC1B;AACW,SAAA,IAAId,EAAiB,aAC5B;AACU,UAAAY,wBAAa;AAEnB,eAAWI,KAAWF;AAEd,MAAAF,EAAO,IAAII,CAAO,MAEtBJ,EAAO,IAAII,CAAO,GAEZ,MAAAA;AAAA,EACV,CACH;AACL;AAEgB,SAAAoE,EAAUC,GAAoBC,GAC9C;AACW,SAAA,IAAItF,EAAsB,aACjC;AACI,UAAMuF,IAAgBF,EAAM,OAAO,QAAQ,EAAE,GACvCG,IAAiBF,EAAO,OAAO,QAAQ,EAAE;AAE/C,eACA;AACU,YAAAG,IAAcF,EAAc,QAC5BG,IAAeF,EAAe;AAE/B,UAAAC,EAAY,QAAUC,EAAa;AAAS;AAEjD,YAAM,CAACD,EAAY,OAAOC,EAAa,KAAK;AAAA,IAChD;AAAA,EAAA,CACH;AACL;AC1FgB,SAAAC,EAA0B/E,GAAqBgF,GAC/D;AACI,MAAIA,MAAY,QAChB;AACI,QAAIC,IAAO,GACPjB,IAAS;AAEb,eAAWzE,KAASS;AAEhBiF,MAAAA,KAAQ1F,GACRyE,KAAU;AAGd,WAAOiB,IAAOjB;AAAAA,EAClB;AAEA,MAAIiB,IAAO,GACPjB,IAAS;AAEb,aAAW,CAACzE,GAAO2F,CAAM,KAAKV,EAAIxE,GAAQgF,CAAO;AAE7C,IAAAC,KAAQ1F,IAAQ2F,GACNlB,KAAAkB;AAGd,SAAOD,IAAOjB;AAClB;AAEO,SAASmB,EAAK5F,GACrB;AACI,MAAI6F,IAAc;AAClB,WAAS3F,IAAQ,GAAGA,IAAQF,EAAM,QAAQE,KAAS,GACnD;AACU,UAAA4F,IAAO9F,EAAM,WAAWE,CAAK;AAEnB,IAAA2F,KAAAA,KAAe,KAAKA,IAAeC,GACpCD,KAAA;AAAA,EACnB;AAEO,SAAAA;AACX;AAEO,SAASE,EAAsBtF,GACtC;AACI,MAAIiF,IAAO;AACX,aAAW1F,KAASS;AAAkB,IAAAiF,KAAA1F;AAE/B,SAAA0F;AACX;ACpDO,SAASM,EAAWhG,GAC3B;AACW,SAAA,GAAGA,EAAM,OAAO,CAAC,EAAE,aAAa,GAAGA,EAAM,MAAM,CAAC,CAAC;AAC5D;ACHO,MAAMiG,IAAU;"}
|
package/dist/core.umd.cjs
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
|
|
3
3
|
Caused by ${t.stack}`:this.stack+=`
|
|
4
4
|
|
|
5
|
-
Caused by ${t}`)}}class a{constructor(e){l(this,"_iterator");l(this,"return");l(this,"throw");e instanceof Function?this._iterator=e():Symbol.iterator in e?this._iterator=e[Symbol.iterator]():this._iterator=e,this._iterator.return&&(this.return=t=>this._iterator.return(t)),this._iterator.throw&&(this.throw=t=>this._iterator.throw(t))}every(e){let t=0;for(;;){const n=this._iterator.next();if(n.done)return!0;if(!e(n.value,t))return!1;t+=1}}some(e){let t=0;for(;;){const n=this._iterator.next();if(n.done)return!1;if(e(n.value,t))return!0;t+=1}}filter(e){const t=this._iterator;return new a(function*(){let n=0;for(;;){const r=t.next();if(r.done)return r.value;e(r.value,n)&&(yield r.value),n+=1}})}map(e){const t=this._iterator;return new a(function*(){let n=0;for(;;){const r=t.next();if(r.done)return r.value;yield e(r.value,n),n+=1}})}reduce(e,t){let n=0,r=t;if(r===void 0){const i=this._iterator.next();if(i.done)throw new TypeError("Reduce of empty iterator with no initial value");r=i.value,n+=1}for(;;){const i=this._iterator.next();if(i.done)return r;r=e(r,i.value,n),n+=1}}enumerate(){return this.map((e,t)=>[t,e])}unique(){const e=this._iterator;return new a(function*(){const t=new Set;for(;;){const n=e.next();if(n.done)return n.value;t.has(n.value)||(t.add(n.value),yield n.value)}})}count(){let e=0;for(;;){if(this._iterator.next().done)return e;e+=1}}forEach(e){let t=0;for(;;){const n=this._iterator.next();if(n.done)return;e(n.value,t),t+=1}}next(...e){return this._iterator.next(...e)}toArray(){return Array.from(this)}[Symbol.iterator](){return this}}class f{constructor(e){l(this,"_elements");this._elements=new a(e)}filter(e){const t=this._elements;return new f(function*(){for(const[n,[r,i]]of t.enumerate())e(r,i,n)&&(yield[r,i])})}map(e){const t=this._elements;return new f(function*(){for(const[n,[r,i]]of t.enumerate())yield[r,e(r,i,n)]})}toArray(){return Array.from(this.toMap().values())}toMap(){return new Map(this._elements.toArray())}toObject(){return Object.fromEntries(this._elements.toArray())}}class m{constructor(e){l(this,"_elements");this._elements=new a(e)}every(e){const t=new Map;for(const[n,r]of this._elements){const[i,u]=t.get(n)??[0,!0];u&&t.set(n,[i+1,e(n,r,i)])}return new f(function*(){for(const[n,[r,i]]of t)yield[n,i]})}some(e){const t=new Map;for(const[n,r]of this._elements){const[i,u]=t.get(n)??[0,!1];u||t.set(n,[i+1,e(n,r,i)])}return new f(function*(){for(const[n,[r,i]]of t)yield[n,i]})}filter(e){const t=this._elements;return new m(function*(){const n=new Map;for(const[r,i]of t){const u=n.get(r)??0;n.set(r,u+1),e(r,i,u)&&(yield[r,i])}})}map(e){const t=this._elements;return new m(function*(){const n=new Map;for(const[r,i]of t){const u=n.get(r)??0;n.set(r,u+1),yield[r,e(r,i,u)]}})}reduce(e,t){const n=new Map;for(const[r,i]of this._elements){let u,h;if(n.has(r))[u,h]=n.get(r),u+=1;else if(t!==void 0)u=0,h=t;else{n.set(r,[0,i]);continue}h=e(r,h,i,u),n.set(r,[u,h])}return new f(function*(){for(const[r,[i,u]]of n)yield[r,u]})}unique(){const e=this._elements;return new m(function*(){const t=new Map;for(const[n,r]of e){const i=t.get(n)??new Set;i.has(r)||(i.add(r),t.set(n,i),yield[n,r])}})}count(){const e=new Map;for(const[t]of this._elements){const n=e.get(t)??0;e.set(t,n+1)}return new f(function*(){for(const[t,n]of e)yield[t,n]})}first(){const e=new Map;for(const[t,n]of this._elements)e.has(t)||e.set(t,n);return new f(function*(){for(const[t,n]of e)yield[t,n]})}last(){const e=new Map;for(const[t,n]of this._elements)e.set(t,n);return new f(function*(){for(const[t,n]of e)yield[t,n]})}toArray(){return Array.from(this.toMap().values())}toMap(){const e=new Map;for(const[t,n]of this._elements){const r=e.get(t)??[];r.push(n),e.set(t,r)}return e}toObject(){const e={};for(const[t,n]of this._elements){const r=e[t]??[];r.push(n),e[t]=r}return e}}class _{constructor(e){l(this,"_elements");this._elements=new a(e)}filter(e){return new _(this._elements.filter(e))}map(e){return new _(this._elements.map(e))}unique(){return new _(this._elements.unique())}byKey(e){return new m(this._elements.map((t,n)=>[e(t,n),t]))}}class g{constructor(e=!0){l(this,"_preferPersistence");l(this,"_volatile");l(this,"_persistent");this._preferPersistence=e,this._volatile=window.sessionStorage,this._persistent=window.localStorage}_get(e,t,n){const r=e.getItem(t);if(r)try{return JSON.parse(r)}catch{console.warn(`The "${r}" value for "${t}" property cannot be parsed. Clearing the storage...`),e.removeItem(t)}return n}_set(e,t,n){const r=JSON.stringify(n);r?e.setItem(t,r):e.removeItem(t)}get(e,t,n=this._preferPersistence){const r=n?this._persistent:this._volatile;return this._get(r,e,t)}recall(e,t){return this._get(this._volatile,e,t)}retrieve(e,t){return this.recall(e)??this.read(e,t)}read(e,t){return this._get(this._persistent,e,t)}has(e,t){return(t?this._persistent:this._volatile).getItem(e)!==null}knows(e){return this._volatile.getItem(e)!==null}find(e){return this.knows(e)??this.exists(e)}exists(e){return this._persistent.getItem(e)!==null}set(e,t,n=this._preferPersistence){const r=n?this._persistent:this._volatile;this._set(r,e,t)}remember(e,t){this._set(this._volatile,e,t)}write(e,t){this._set(this._persistent,e,t)}forget(e){this._volatile.removeItem(e)}erase(e){this._persistent.removeItem(e)}clear(e){this._volatile.removeItem(e),this._persistent.removeItem(e)}}class v{constructor(){l(this,"_subscribers");this._subscribers=[]}add(e){this._subscribers.push(e)}remove(e){const t=this._subscribers.indexOf(e);if(t<0)throw new c("Unable to remove the requested subscriber. It was not found.");this._subscribers.splice(t,1)}call(...e){return this._subscribers.slice().map(t=>t(...e))}}class p{constructor(e,t){l(this,"_isPending");l(this,"_isFulfilled");l(this,"_isRejected");l(this,"_resolve");l(this,"_reject");l(this,"_promise");this._isPending=!0,this._isFulfilled=!1,this._isRejected=!1;let n,r;const i=(d,z)=>{n=d,r=z};let u;e?u=d=>(this._isPending=!1,this._isFulfilled=!0,e(d)):u=d=>(this._isPending=!1,this._isFulfilled=!0,d);let h;t?h=d=>(this._isPending=!1,this._isRejected=!0,t(d)):h=d=>(this._isPending=!1,this._isRejected=!0,d),this._promise=new Promise(i).then(u,h),this._resolve=n,this._reject=r}get isPending(){return this._isPending}get isFulfilled(){return this._isFulfilled}get isRejected(){return this._isRejected}get resolve(){return this._resolve}get reject(){return this._reject}then(e,t){return this._promise.then(e,t)}catch(e){return this._promise.catch(e)}finally(e){return this._promise.finally(e)}watch(e){return e.then(this.resolve,this.reject),this}get[Symbol.toStringTag](){return"DeferredPromise"}}class b{constructor(e){l(this,"_isPending");l(this,"_isFulfilled");l(this,"_isRejected");l(this,"_promise");this._isPending=!0,this._isFulfilled=!1,this._isRejected=!1;const t=r=>(this._isPending=!1,this._isFulfilled=!0,r),n=r=>(this._isPending=!1,this._isRejected=!0,r);this._promise=new Promise(e).then(t,n)}get isPending(){return this._isPending}get isFulfilled(){return this._isFulfilled}get isRejected(){return this._isRejected}then(e,t){return this._promise.then(e,t)}catch(e){return this._promise.catch(e)}finally(e){return this._promise.finally(e)}get[Symbol.toStringTag](){return"SmartPromise"}}class k{static Boolean(e=.5){return Math.random()<e}static Integer(e,t){return Math.floor(t===void 0?Math.random()*e:Math.random()*(t-e)+e)}static Decimal(e,t){return t===void 0?Math.random()*e:Math.random()*(t-e)+e}static Choice(e){return e[this.Integer(e.length)]}constructor(){}}async function M(s){return new Promise((e,t)=>setTimeout(e,s))}async function P(){return new Promise((s,e)=>requestAnimationFrame(()=>s()))}var y=(s=>(s[s.Second=1e3]="Second",s[s.Minute=6e4]="Minute",s[s.Hour=36e5]="Hour",s[s.Day=864e5]="Day",s[s.Week=6048e5]="Week",s[s.Month=2592e6]="Month",s[s.Year=31536e6]="Year",s))(y||{});function S(s,e,t=864e5){return Math.floor((e.getTime()-s.getTime())/t)}function j(s,e,t=864e5){return new a(function*(){const n=e.getTime();let r=s.getTime();for(;r<n;)yield new Date(r),r+=t})}function R(s,e=864e5){return new Date(Math.floor(s.getTime()/e)*e)}async function x(s,e="text/javascript"){return new Promise((t,n)=>{const r=document.createElement("script");r.async=!0,r.defer=!0,r.src=s,r.type=e,r.onload=()=>t(),r.onerror=()=>n(),document.body.appendChild(r)})}function F(s){if(Array.isArray(s))return s.length;let e=0;for(const t of s)e+=1;return e}function I(s,e,t=1){return new a(function*(){e===void 0&&(e=s,s=0),s>e&&(t=t??-1);for(let n=s;n<e;n+=t)yield n})}function T(s){const e=Array.from(s);for(let t=e.length-1;t>0;t-=1){const n=Math.floor(Math.random()*(t+1));[e[t],e[n]]=[e[n],e[t]]}return e}function A(s){return new a(function*(){const e=new Set;for(const t of s)e.has(t)||(e.add(t),yield t)})}function w(s,e){return new a(function*(){const t=s[Symbol.iterator](),n=e[Symbol.iterator]();for(;;){const r=t.next(),i=n.next();if(r.done||i.done)break;yield[r.value,i.value]}})}function E(s,e){if(e===void 0){let r=0,i=0;for(const u of s)r+=u,i+=1;return r/i}let t=0,n=0;for(const[r,i]of w(s,e))t+=r*i,n+=i;return t/n}function O(s){let e=0;for(let t=0;t<s.length;t+=1){const n=s.charCodeAt(t);e=(e<<5)-e+n,e|=0}return e}function q(s){let e=0;for(const t of s)e+=t;return e}function C(s){return`${s.charAt(0).toUpperCase()}${s.slice(1)}`}const $="1.3.
|
|
5
|
+
Caused by ${t}`)}}class a{constructor(e){l(this,"_iterator");l(this,"return");l(this,"throw");e instanceof Function?this._iterator=e():Symbol.iterator in e?this._iterator=e[Symbol.iterator]():this._iterator=e,this._iterator.return&&(this.return=t=>this._iterator.return(t)),this._iterator.throw&&(this.throw=t=>this._iterator.throw(t))}every(e){let t=0;for(;;){const n=this._iterator.next();if(n.done)return!0;if(!e(n.value,t))return!1;t+=1}}some(e){let t=0;for(;;){const n=this._iterator.next();if(n.done)return!1;if(e(n.value,t))return!0;t+=1}}filter(e){const t=this._iterator;return new a(function*(){let n=0;for(;;){const r=t.next();if(r.done)return r.value;e(r.value,n)&&(yield r.value),n+=1}})}map(e){const t=this._iterator;return new a(function*(){let n=0;for(;;){const r=t.next();if(r.done)return r.value;yield e(r.value,n),n+=1}})}reduce(e,t){let n=0,r=t;if(r===void 0){const i=this._iterator.next();if(i.done)throw new TypeError("Reduce of empty iterator with no initial value");r=i.value,n+=1}for(;;){const i=this._iterator.next();if(i.done)return r;r=e(r,i.value,n),n+=1}}enumerate(){return this.map((e,t)=>[t,e])}unique(){const e=this._iterator;return new a(function*(){const t=new Set;for(;;){const n=e.next();if(n.done)return n.value;t.has(n.value)||(t.add(n.value),yield n.value)}})}count(){let e=0;for(;;){if(this._iterator.next().done)return e;e+=1}}forEach(e){let t=0;for(;;){const n=this._iterator.next();if(n.done)return;e(n.value,t),t+=1}}next(...e){return this._iterator.next(...e)}toArray(){return Array.from(this)}[Symbol.iterator](){return this}}class f{constructor(e){l(this,"_elements");this._elements=new a(e)}filter(e){const t=this._elements;return new f(function*(){for(const[n,[r,i]]of t.enumerate())e(r,i,n)&&(yield[r,i])})}map(e){const t=this._elements;return new f(function*(){for(const[n,[r,i]]of t.enumerate())yield[r,e(r,i,n)]})}toArray(){return Array.from(this.toMap().values())}toMap(){return new Map(this._elements.toArray())}toObject(){return Object.fromEntries(this._elements.toArray())}}class m{constructor(e){l(this,"_elements");this._elements=new a(e)}every(e){const t=new Map;for(const[n,r]of this._elements){const[i,u]=t.get(n)??[0,!0];u&&t.set(n,[i+1,e(n,r,i)])}return new f(function*(){for(const[n,[r,i]]of t)yield[n,i]})}some(e){const t=new Map;for(const[n,r]of this._elements){const[i,u]=t.get(n)??[0,!1];u||t.set(n,[i+1,e(n,r,i)])}return new f(function*(){for(const[n,[r,i]]of t)yield[n,i]})}filter(e){const t=this._elements;return new m(function*(){const n=new Map;for(const[r,i]of t){const u=n.get(r)??0;n.set(r,u+1),e(r,i,u)&&(yield[r,i])}})}map(e){const t=this._elements;return new m(function*(){const n=new Map;for(const[r,i]of t){const u=n.get(r)??0;n.set(r,u+1),yield[r,e(r,i,u)]}})}reduce(e,t){const n=new Map;for(const[r,i]of this._elements){let u,h;if(n.has(r))[u,h]=n.get(r),u+=1;else if(t!==void 0)u=0,h=t(r);else{n.set(r,[0,i]);continue}h=e(r,h,i,u),n.set(r,[u,h])}return new f(function*(){for(const[r,[i,u]]of n)yield[r,u]})}unique(){const e=this._elements;return new m(function*(){const t=new Map;for(const[n,r]of e){const i=t.get(n)??new Set;i.has(r)||(i.add(r),t.set(n,i),yield[n,r])}})}count(){const e=new Map;for(const[t]of this._elements){const n=e.get(t)??0;e.set(t,n+1)}return new f(function*(){for(const[t,n]of e)yield[t,n]})}first(){const e=new Map;for(const[t,n]of this._elements)e.has(t)||e.set(t,n);return new f(function*(){for(const[t,n]of e)yield[t,n]})}last(){const e=new Map;for(const[t,n]of this._elements)e.set(t,n);return new f(function*(){for(const[t,n]of e)yield[t,n]})}toArray(){return Array.from(this.toMap().values())}toMap(){const e=new Map;for(const[t,n]of this._elements){const r=e.get(t)??[];r.push(n),e.set(t,r)}return e}toObject(){const e={};for(const[t,n]of this._elements){const r=e[t]??[];r.push(n),e[t]=r}return e}}class _{constructor(e){l(this,"_elements");this._elements=new a(e)}filter(e){return new _(this._elements.filter(e))}map(e){return new _(this._elements.map(e))}unique(){return new _(this._elements.unique())}byKey(e){return new m(this._elements.map((t,n)=>[e(t,n),t]))}}class g{constructor(e=!0){l(this,"_preferPersistence");l(this,"_volatile");l(this,"_persistent");this._preferPersistence=e,this._volatile=window.sessionStorage,this._persistent=window.localStorage}_get(e,t,n){const r=e.getItem(t);if(r)try{return JSON.parse(r)}catch{console.warn(`The "${r}" value for "${t}" property cannot be parsed. Clearing the storage...`),e.removeItem(t)}return n}_set(e,t,n){const r=JSON.stringify(n);r?e.setItem(t,r):e.removeItem(t)}get(e,t,n=this._preferPersistence){const r=n?this._persistent:this._volatile;return this._get(r,e,t)}recall(e,t){return this._get(this._volatile,e,t)}retrieve(e,t){return this.recall(e)??this.read(e,t)}read(e,t){return this._get(this._persistent,e,t)}has(e,t){return(t?this._persistent:this._volatile).getItem(e)!==null}knows(e){return this._volatile.getItem(e)!==null}find(e){return this.knows(e)??this.exists(e)}exists(e){return this._persistent.getItem(e)!==null}set(e,t,n=this._preferPersistence){const r=n?this._persistent:this._volatile;this._set(r,e,t)}remember(e,t){this._set(this._volatile,e,t)}write(e,t){this._set(this._persistent,e,t)}forget(e){this._volatile.removeItem(e)}erase(e){this._persistent.removeItem(e)}clear(e){this._volatile.removeItem(e),this._persistent.removeItem(e)}}class v{constructor(){l(this,"_subscribers");this._subscribers=[]}add(e){this._subscribers.push(e)}remove(e){const t=this._subscribers.indexOf(e);if(t<0)throw new c("Unable to remove the requested subscriber. It was not found.");this._subscribers.splice(t,1)}call(...e){return this._subscribers.slice().map(t=>t(...e))}}class p{constructor(e,t){l(this,"_isPending");l(this,"_isFulfilled");l(this,"_isRejected");l(this,"_resolve");l(this,"_reject");l(this,"_promise");this._isPending=!0,this._isFulfilled=!1,this._isRejected=!1;let n,r;const i=(d,z)=>{n=d,r=z};let u;e?u=d=>(this._isPending=!1,this._isFulfilled=!0,e(d)):u=d=>(this._isPending=!1,this._isFulfilled=!0,d);let h;t?h=d=>(this._isPending=!1,this._isRejected=!0,t(d)):h=d=>(this._isPending=!1,this._isRejected=!0,d),this._promise=new Promise(i).then(u,h),this._resolve=n,this._reject=r}get isPending(){return this._isPending}get isFulfilled(){return this._isFulfilled}get isRejected(){return this._isRejected}get resolve(){return this._resolve}get reject(){return this._reject}then(e,t){return this._promise.then(e,t)}catch(e){return this._promise.catch(e)}finally(e){return this._promise.finally(e)}watch(e){return e.then(this.resolve,this.reject),this}get[Symbol.toStringTag](){return"DeferredPromise"}}class b{constructor(e){l(this,"_isPending");l(this,"_isFulfilled");l(this,"_isRejected");l(this,"_promise");this._isPending=!0,this._isFulfilled=!1,this._isRejected=!1;const t=r=>(this._isPending=!1,this._isFulfilled=!0,r),n=r=>(this._isPending=!1,this._isRejected=!0,r);this._promise=new Promise(e).then(t,n)}get isPending(){return this._isPending}get isFulfilled(){return this._isFulfilled}get isRejected(){return this._isRejected}then(e,t){return this._promise.then(e,t)}catch(e){return this._promise.catch(e)}finally(e){return this._promise.finally(e)}get[Symbol.toStringTag](){return"SmartPromise"}}class k{static Boolean(e=.5){return Math.random()<e}static Integer(e,t){return Math.floor(t===void 0?Math.random()*e:Math.random()*(t-e)+e)}static Decimal(e,t){return t===void 0?Math.random()*e:Math.random()*(t-e)+e}static Choice(e){return e[this.Integer(e.length)]}constructor(){}}async function M(s){return new Promise((e,t)=>setTimeout(e,s))}async function P(){return new Promise((s,e)=>requestAnimationFrame(()=>s()))}var y=(s=>(s[s.Second=1e3]="Second",s[s.Minute=6e4]="Minute",s[s.Hour=36e5]="Hour",s[s.Day=864e5]="Day",s[s.Week=6048e5]="Week",s[s.Month=2592e6]="Month",s[s.Year=31536e6]="Year",s))(y||{});function S(s,e,t=864e5){return Math.floor((e.getTime()-s.getTime())/t)}function j(s,e,t=864e5){return new a(function*(){const n=e.getTime();let r=s.getTime();for(;r<n;)yield new Date(r),r+=t})}function R(s,e=864e5){return new Date(Math.floor(s.getTime()/e)*e)}async function x(s,e="text/javascript"){return new Promise((t,n)=>{const r=document.createElement("script");r.async=!0,r.defer=!0,r.src=s,r.type=e,r.onload=()=>t(),r.onerror=()=>n(),document.body.appendChild(r)})}function F(s){if(Array.isArray(s))return s.length;let e=0;for(const t of s)e+=1;return e}function I(s,e,t=1){return new a(function*(){e===void 0&&(e=s,s=0),s>e&&(t=t??-1);for(let n=s;n<e;n+=t)yield n})}function T(s){const e=Array.from(s);for(let t=e.length-1;t>0;t-=1){const n=Math.floor(Math.random()*(t+1));[e[t],e[n]]=[e[n],e[t]]}return e}function A(s){return new a(function*(){const e=new Set;for(const t of s)e.has(t)||(e.add(t),yield t)})}function w(s,e){return new a(function*(){const t=s[Symbol.iterator](),n=e[Symbol.iterator]();for(;;){const r=t.next(),i=n.next();if(r.done||i.done)break;yield[r.value,i.value]}})}function E(s,e){if(e===void 0){let r=0,i=0;for(const u of s)r+=u,i+=1;return r/i}let t=0,n=0;for(const[r,i]of w(s,e))t+=r*i,n+=i;return t/n}function O(s){let e=0;for(let t=0;t<s.length;t+=1){const n=s.charCodeAt(t);e=(e<<5)-e+n,e|=0}return e}function q(s){let e=0;for(const t of s)e+=t;return e}function C(s){return`${s.charAt(0).toUpperCase()}${s.slice(1)}`}const $="1.3.4";o.AggregatedIterator=m,o.Aggregator=_,o.DateUnit=y,o.DeferredPromise=p,o.Exception=c,o.JsonStorage=g,o.Random=k,o.ReducedIterator=f,o.SmartIterator=a,o.SmartPromise=b,o.Subscribers=v,o.VERSION=$,o.average=E,o.capitalize=C,o.count=F,o.dateDifference=S,o.dateRange=j,o.dateRound=R,o.delay=M,o.hash=O,o.loadScript=x,o.nextAnimationFrame=P,o.range=I,o.shuffle=T,o.sum=q,o.unique=A,o.zip=w,Object.defineProperty(o,Symbol.toStringTag,{value:"Module"})});
|
|
6
6
|
//# sourceMappingURL=core.umd.cjs.map
|
package/dist/core.umd.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"core.umd.cjs","sources":["../src/models/exception.ts","../src/models/smart-iterator.ts","../src/models/aggregators/reduced-iterator.ts","../src/models/aggregators/aggregated-iterator.ts","../src/models/aggregators/index.ts","../src/models/json-storage.ts","../src/models/subscribers.ts","../src/models/promises/deferred-promise.ts","../src/models/promises/smart-promise.ts","../src/utils/random.ts","../src/utils/async.ts","../src/utils/date.ts","../src/utils/dom.ts","../src/utils/iterator.ts","../src/utils/math.ts","../src/utils/string.ts","../src/index.ts"],"sourcesContent":["export default class Exception extends Error\n{\n public static FromUnknown(error: unknown): Exception\n {\n if (error instanceof Exception)\n {\n return error;\n }\n if (error instanceof Error)\n {\n const exc = new Exception(error.message);\n\n exc.stack = error.stack;\n exc.name = error.name;\n\n return exc;\n }\n\n return new Exception(`${error}`);\n }\n\n public constructor(message: string, cause?: unknown, name = \"Exception\")\n {\n super(message);\n\n this.cause = cause;\n this.name = name;\n\n if (cause)\n {\n if (cause instanceof Error)\n {\n this.stack += `\\n\\nCaused by ${cause.stack}`;\n }\n else\n {\n this.stack += `\\n\\nCaused by ${cause}`;\n }\n }\n }\n}\n","import type { GeneratorFunction, Iteratee, Reducer } from \"../types.js\";\n\nexport default class SmartIterator<T, R = void, N = undefined> implements Iterator<T, R, N>\n{\n protected _iterator: Iterator<T, R, N>;\n\n public return?: (value?: R) => IteratorResult<T, R>;\n public throw?: (error?: unknown) => IteratorResult<T, R>;\n\n public constructor(iterable: Iterable<T>);\n public constructor(iterator: Iterator<T, R, N>);\n public constructor(generatorFn: GeneratorFunction<T, R, N>);\n public constructor(argument: Iterable<T> | Iterator<T, R, N> | GeneratorFunction<T, R, N>);\n public constructor(argument: Iterable<T> | Iterator<T, R, N> | GeneratorFunction<T, R, N>)\n {\n if (argument instanceof Function)\n {\n this._iterator = argument();\n }\n else if (Symbol.iterator in argument)\n {\n this._iterator = argument[Symbol.iterator]() as Iterator<T, R, N>;\n }\n else\n {\n this._iterator = argument;\n }\n\n if (this._iterator.return) { this.return = (value?: R) => this._iterator.return!(value); }\n if (this._iterator.throw) { this.throw = (error?: unknown) => this._iterator.throw!(error); }\n }\n\n public every(predicate: Iteratee<T, boolean>): boolean\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n\n if (result.done) { return true; }\n if (!(predicate(result.value, index))) { return false; }\n\n index += 1;\n }\n }\n public some(predicate: Iteratee<T, boolean>): boolean\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n\n if (result.done) { return false; }\n if (predicate(result.value, index)) { return true; }\n\n index += 1;\n }\n }\n\n public filter(predicate: Iteratee<T, boolean>): SmartIterator<T, R>\n {\n const iterator = this._iterator;\n\n return new SmartIterator<T, R>(function* ()\n {\n let index = 0;\n\n while (true)\n {\n const result = iterator.next();\n\n if (result.done) { return result.value; }\n if (predicate(result.value, index)) { yield result.value; }\n\n index += 1;\n }\n });\n }\n public map<V>(iteratee: Iteratee<T, V>): SmartIterator<V, R>\n {\n const iterator = this._iterator;\n\n return new SmartIterator<V, R>(function* ()\n {\n let index = 0;\n\n while (true)\n {\n const result = iterator.next();\n if (result.done) { return result.value; }\n\n yield iteratee(result.value, index);\n\n index += 1;\n }\n });\n }\n public reduce<A>(reducer: Reducer<T, A>, initialValue?: A): A\n {\n let index = 0;\n let accumulator = initialValue;\n if (accumulator === undefined)\n {\n const result = this._iterator.next();\n if (result.done) { throw new TypeError(\"Reduce of empty iterator with no initial value\"); }\n\n accumulator = (result.value as unknown) as A;\n index += 1;\n }\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n if (result.done) { return accumulator; }\n\n accumulator = reducer(accumulator, result.value, index);\n\n index += 1;\n }\n }\n\n public enumerate(): SmartIterator<[number, T], R>\n {\n return this.map((value, index) => [index, value]);\n }\n public unique(): SmartIterator<T, R>\n {\n const iterator = this._iterator;\n\n return new SmartIterator<T, R>(function* ()\n {\n const values = new Set<T>();\n\n while (true)\n {\n const result = iterator.next();\n\n if (result.done) { return result.value; }\n if (values.has(result.value)) { continue; }\n\n values.add(result.value);\n\n yield result.value;\n }\n });\n }\n\n public count(): number\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n if (result.done) { return index; }\n\n index += 1;\n }\n }\n public forEach(iteratee: Iteratee<T>): void\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n if (result.done) { return; }\n\n iteratee(result.value, index);\n\n index += 1;\n }\n }\n\n public next(...values: N extends undefined ? [] : [N]): IteratorResult<T, R>\n {\n return this._iterator.next(...values);\n }\n\n public toArray(): T[]\n {\n return Array.from(this as Iterable<T>);\n }\n\n public [Symbol.iterator](): SmartIterator<T, R, N> { return this; }\n}\n","import SmartIterator from \"../smart-iterator.js\";\n\nimport type { KeyIteratee } from \"./types.js\";\nimport type { GeneratorFunction } from \"../../types.js\";\n\nexport default class ReducedIterator<K extends PropertyKey, T>\n{\n protected _elements: SmartIterator<[K, T]>;\n\n public constructor(iterable: Iterable<[K, T]>);\n public constructor(iterator: Iterator<[K, T]>);\n public constructor(generatorFn: GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>)\n {\n this._elements = new SmartIterator(argument);\n }\n\n public filter(predicate: KeyIteratee<K, T, boolean>): ReducedIterator<K, T>\n {\n const elements = this._elements;\n\n return new ReducedIterator(function* ()\n {\n for (const [index, [key, element]] of elements.enumerate())\n {\n if (predicate(key, element, index))\n {\n yield [key, element];\n }\n }\n });\n }\n public map<V>(iteratee: KeyIteratee<K, T, V>): ReducedIterator<K, V>\n {\n const elements = this._elements;\n\n return new ReducedIterator(function* ()\n {\n for (const [index, [key, element]] of elements.enumerate())\n {\n yield [key, iteratee(key, element, index)];\n }\n });\n }\n\n public toArray(): T[]\n {\n return Array.from(this.toMap().values());\n }\n public toMap(): Map<K, T>\n {\n return new Map(this._elements.toArray());\n }\n public toObject(): Record<K, T>\n {\n return Object.fromEntries(this._elements.toArray()) as Record<K, T>;\n }\n}\n","import ReducedIterator from \"./reduced-iterator.js\";\nimport SmartIterator from \"../smart-iterator.js\";\n\nimport type { KeyIteratee, KeyReducer } from \"./types.js\";\nimport type { GeneratorFunction } from \"../../types.js\";\n\nexport default class AggregatedIterator<K extends PropertyKey, T>\n{\n protected _elements: SmartIterator<[K, T]>;\n\n public constructor(iterable: Iterable<[K, T]>);\n public constructor(iterator: Iterator<[K, T]>);\n public constructor(generatorFn: GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>)\n {\n this._elements = new SmartIterator(argument);\n }\n\n public every(predicate: KeyIteratee<K, T, boolean>): ReducedIterator<K, boolean>\n {\n const indexes = new Map<K, [number, boolean]>();\n\n for (const [key, element] of this._elements)\n {\n const [index, result] = indexes.get(key) ?? [0, true];\n\n if (!(result)) { continue; }\n\n indexes.set(key, [index + 1, predicate(key, element, index)]);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, [_, result]] of indexes)\n {\n yield [key, result];\n }\n });\n }\n public some(predicate: KeyIteratee<K, T, boolean>): ReducedIterator<K, boolean>\n {\n const indexes = new Map<K, [number, boolean]>();\n\n for (const [key, element] of this._elements)\n {\n const [index, result] = indexes.get(key) ?? [0, false];\n\n if (result) { continue; }\n\n indexes.set(key, [index + 1, predicate(key, element, index)]);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, [_, result]] of indexes)\n {\n yield [key, result];\n }\n });\n }\n\n public filter(predicate: KeyIteratee<K, T, boolean>): AggregatedIterator<K, T>\n {\n const elements = this._elements;\n\n return new AggregatedIterator(function* ()\n {\n const indexes = new Map<K, number>();\n\n for (const [key, element] of elements)\n {\n const index = indexes.get(key) ?? 0;\n\n indexes.set(key, index + 1);\n\n if (predicate(key, element, index)) { yield [key, element]; }\n }\n });\n }\n public map<V>(iteratee: KeyIteratee<K, T, V>): AggregatedIterator<K, V>\n {\n const elements = this._elements;\n\n return new AggregatedIterator(function* ()\n {\n const indexes = new Map<K, number>();\n\n for (const [key, element] of elements)\n {\n const index = indexes.get(key) ?? 0;\n\n indexes.set(key, index + 1);\n\n yield [key, iteratee(key, element, index)];\n }\n });\n }\n public reduce<A>(reducer: KeyReducer<K, T, A>, initialValue?: A): ReducedIterator<K, A>\n {\n const accumulators = new Map<K, [number, A]>();\n\n for (const [key, element] of this._elements)\n {\n let index: number;\n let accumulator: A;\n\n if (accumulators.has(key))\n {\n [index, accumulator] = accumulators.get(key)!;\n\n index += 1;\n }\n else if (initialValue !== undefined)\n {\n index = 0;\n accumulator = initialValue;\n }\n else\n {\n accumulators.set(key, [0, (element as unknown) as A]);\n\n continue;\n }\n\n accumulator = reducer(key, accumulator, element, index);\n\n accumulators.set(key, [index, accumulator]);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, [_, accumulator]] of accumulators)\n {\n yield [key, accumulator];\n }\n });\n }\n\n public unique(): AggregatedIterator<K, T>\n {\n const elements = this._elements;\n\n return new AggregatedIterator(function* ()\n {\n const keys = new Map<K, Set<T>>();\n\n for (const [key, element] of elements)\n {\n const values = keys.get(key) ?? new Set<T>();\n\n if (values.has(element)) { continue; }\n\n values.add(element);\n keys.set(key, values);\n\n yield [key, element];\n }\n });\n }\n\n public count(): ReducedIterator<K, number>\n {\n const counters = new Map<K, number>();\n\n for (const [key] of this._elements)\n {\n const count = counters.get(key) ?? 0;\n\n counters.set(key, count + 1);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, count] of counters)\n {\n yield [key, count];\n }\n });\n }\n public first(): ReducedIterator<K, T>\n {\n const firsts = new Map<K, T>();\n\n for (const [key, element] of this._elements)\n {\n if (firsts.has(key)) { continue; }\n\n firsts.set(key, element);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, element] of firsts)\n {\n yield [key, element];\n }\n });\n }\n public last(): ReducedIterator<K, T>\n {\n const lasts = new Map<K, T>();\n\n for (const [key, element] of this._elements)\n {\n lasts.set(key, element);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, element] of lasts)\n {\n yield [key, element];\n }\n });\n }\n\n public toArray(): T[][]\n {\n return Array.from(this.toMap().values());\n }\n public toMap(): Map<K, T[]>\n {\n const groups = new Map<K, T[]>();\n\n for (const [key, element] of this._elements)\n {\n const value = groups.get(key) ?? [];\n\n value.push(element);\n groups.set(key, value);\n }\n\n return groups;\n }\n public toObject(): Record<K, T[]>\n {\n const groups = { } as Record<K, T[]>;\n\n for (const [key, element] of this._elements)\n {\n const value = groups[key] ?? [];\n\n value.push(element);\n groups[key] = value;\n }\n\n return groups;\n }\n}\n","import AggregatedIterator from \"./aggregated-iterator.js\";\nimport ReducedIterator from \"./reduced-iterator.js\";\nimport SmartIterator from \"../smart-iterator.js\";\n\nimport type { GeneratorFunction, Iteratee } from \"../../types.js\";\n\nexport default class Aggregator<T>\n{\n protected _elements: SmartIterator<T>;\n\n public constructor(iterable: Iterable<T>);\n public constructor(iterator: Iterator<T>);\n public constructor(generatorFn: GeneratorFunction<T>);\n public constructor(argument: Iterable<T> | Iterator<T> | GeneratorFunction<T>);\n public constructor(argument: Iterable<T> | Iterator<T> | GeneratorFunction<T>)\n {\n this._elements = new SmartIterator(argument);\n }\n\n public filter(predicate: Iteratee<T, boolean>): Aggregator<T>\n {\n return new Aggregator(this._elements.filter(predicate));\n }\n public map<V>(iteratee: Iteratee<T, V>): Aggregator<V>\n {\n return new Aggregator(this._elements.map(iteratee));\n }\n\n public unique(): Aggregator<T>\n {\n return new Aggregator(this._elements.unique());\n }\n\n public byKey<K extends PropertyKey>(iteratee: Iteratee<T, K>): AggregatedIterator<K, T>\n {\n return new AggregatedIterator(this._elements.map((element, index) =>\n {\n const key = iteratee(element, index);\n\n return [key, element];\n }));\n }\n}\n\nexport { AggregatedIterator, ReducedIterator };\n","/* eslint-disable no-trailing-spaces */\n\n/**\n * A wrapper around the `Storage` API to store and retrieve JSON values.\n *\n * It allows to handle either the `sessionStorage` or the `localStorage`\n * storage at the same time, depending on the required use case.\n */\nexport default class JsonStorage\n{\n protected _preferPersistence: boolean;\n\n protected _volatile: Storage;\n protected _persistent: Storage;\n\n public constructor(preferPersistence = true)\n {\n this._preferPersistence = preferPersistence;\n\n this._volatile = window.sessionStorage;\n this._persistent = window.localStorage;\n }\n\n protected _get<T>(storage: Storage, propertyName: string): T | undefined;\n protected _get<T>(storage: Storage, propertyName: string, defaultValue: T): T;\n protected _get<T>(storage: Storage, propertyName: string, defaultValue?: T): T | undefined;\n protected _get<T>(storage: Storage, propertyName: string, defaultValue?: T): T | undefined\n {\n const propertyValue = storage.getItem(propertyName);\n if (propertyValue)\n {\n try\n {\n return JSON.parse(propertyValue);\n }\n catch (error)\n {\n // eslint-disable-next-line no-console\n console.warn(\n `The \"${propertyValue}\" value for \"${propertyName}\"` +\n \" property cannot be parsed. Clearing the storage...\");\n\n storage.removeItem(propertyName);\n }\n }\n\n return defaultValue;\n }\n protected _set<T>(storage: Storage, propertyName: string, newValue?: T): void\n {\n const encodedValue = JSON.stringify(newValue);\n if (encodedValue)\n {\n storage.setItem(propertyName, encodedValue);\n }\n else\n {\n storage.removeItem(propertyName);\n }\n }\n\n /**\n * Retrieves the value with the specified name from the corresponding storage.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n * @param persistent Whether to use the persistent `localStorage` or the volatile `sessionStorage`.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public get<T>(propertyName: string, defaultValue: undefined, persistent?: boolean): T | undefined;\n public get<T>(propertyName: string, defaultValue: T, persistent?: boolean): T ;\n public get<T>(propertyName: string, defaultValue?: T, persistent?: boolean): T | undefined;\n public get<T>(propertyName: string, defaultValue?: T, persistent = this._preferPersistence): T | undefined\n {\n const storage = persistent ? this._persistent : this._volatile;\n\n return this._get<T>(storage, propertyName, defaultValue);\n }\n /**\n * Retrieves the value with the specified name from the volatile `sessionStorage`.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public recall<T>(propertyName: string): T | undefined;\n public recall<T>(propertyName: string, defaultValue: T): T;\n public recall<T>(propertyName: string, defaultValue?: T): T | undefined;\n public recall<T>(propertyName: string, defaultValue?: T): T | undefined\n {\n return this._get<T>(this._volatile, propertyName, defaultValue);\n }\n /**\n * Retrieves the value with the specified name looking first in the\n * volatile `sessionStorage` and then in the persistent `localStorage`.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public retrieve<T>(propertyName: string): T | undefined;\n public retrieve<T>(propertyName: string, defaultValue: T): T;\n public retrieve<T>(propertyName: string, defaultValue?: T): T | undefined;\n public retrieve<T>(propertyName: string, defaultValue?: T): T | undefined\n {\n return this.recall<T>(propertyName) ?? this.read<T>(propertyName, defaultValue);\n }\n /**\n * Retrieves the value with the specified name from the persistent `localStorage`.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public read<T>(propertyName: string): T | undefined;\n public read<T>(propertyName: string, defaultValue: T): T;\n public read<T>(propertyName: string, defaultValue?: T): T | undefined;\n public read<T>(propertyName: string, defaultValue?: T): T | undefined\n {\n return this._get<T>(this._persistent, propertyName, defaultValue);\n }\n\n /**\n * Checks whether the property with the specified name exists in the corresponding storage.\n *\n * @param propertyName The name of the property to check.\n * @param persistent Whether to use the persistent `localStorage` or the volatile `sessionStorage`.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public has(propertyName: string, persistent?: boolean): boolean\n {\n const storage = persistent ? this._persistent : this._volatile;\n\n return storage.getItem(propertyName) !== null;\n }\n /**\n * Checks whether the property with the specified name exists in the volatile `sessionStorage`.\n *\n * @param propertyName The name of the property to check.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public knows(propertyName: string): boolean\n {\n return this._volatile.getItem(propertyName) !== null;\n }\n /**\n * Checks whether the property with the specified name exists looking first in the\n * volatile `sessionStorage` and then in the persistent `localStorage`.\n *\n * @param propertyName The name of the property to check.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public find(propertyName: string): boolean\n {\n return this.knows(propertyName) ?? this.exists(propertyName);\n }\n /**\n * Checks whether the property with the specified name exists in the persistent `localStorage`.\n *\n * @param propertyName The name of the property to check.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public exists(propertyName: string): boolean\n {\n return this._persistent.getItem(propertyName) !== null;\n }\n\n /**\n * Sets the value with the specified name in the corresponding storage.\n * If the value is `undefined`, the property is removed from the storage.\n *\n * @param propertyName The name of the property to set.\n * @param newValue The new value to set.\n * @param persistent Whether to use the persistent `localStorage` or the volatile `sessionStorage`.\n */\n public set<T>(propertyName: string, newValue?: T, persistent = this._preferPersistence): void\n {\n const storage = persistent ? this._persistent : this._volatile;\n\n this._set<T>(storage, propertyName, newValue);\n }\n /**\n * Sets the value with the specified name in the volatile `sessionStorage`.\n * If the value is `undefined`, the property is removed from the storage.\n *\n * @param propertyName The name of the property to set.\n * @param newValue The new value to set.\n */\n public remember<T>(propertyName: string, newValue?: T): void\n {\n this._set<T>(this._volatile, propertyName, newValue);\n }\n /**\n * Sets the value with the specified name in the persistent `localStorage`.\n * If the value is `undefined`, the property is removed from the storage.\n *\n * @param propertyName The name of the property to set.\n * @param newValue The new value to set.\n */\n public write<T>(propertyName: string, newValue?: T): void\n {\n this._set<T>(this._persistent, propertyName, newValue);\n }\n\n /**\n * Removes the value with the specified name from the volatile `sessionStorage`.\n *\n * @param propertyName The name of the property to remove.\n */\n public forget(propertyName: string): void\n {\n this._volatile.removeItem(propertyName);\n }\n /**\n * Removes the value with the specified name from the persistent `localStorage`.\n *\n * @param propertyName The name of the property to remove.\n */\n public erase(propertyName: string): void\n {\n this._persistent.removeItem(propertyName);\n }\n /**\n * Removes the value with the specified name from all the storages.\n *\n * @param propertyName The name of the property to remove.\n */\n public clear(propertyName: string): void\n {\n this._volatile.removeItem(propertyName);\n this._persistent.removeItem(propertyName);\n }\n}\n","import Exception from \"./exception.js\";\n\nexport default class Subscribers<P extends unknown[] = [], R = void, T extends (...args: P) => R = (...args: P) => R>\n{\n protected _subscribers: T[];\n\n public constructor()\n {\n this._subscribers = [];\n }\n\n public add(subscriber: T): void\n {\n this._subscribers.push(subscriber);\n }\n public remove(subscriber: T): void\n {\n const index = this._subscribers.indexOf(subscriber);\n if (index < 0)\n {\n throw new Exception(\"Unable to remove the requested subscriber. It was not found.\");\n }\n\n this._subscribers.splice(index, 1);\n }\n\n public call(...args: P): R[]\n {\n return this._subscribers\n .slice()\n .map((subscriber) => subscriber(...args));\n }\n}\n","import type {\n PromiseResolver,\n PromiseRejecter,\n FulfilledHandler,\n RejectedHandler,\n PromiseExecutor\n\n} from \"../../types.js\";\n\nexport default class DeferredPromise<T = void, E = unknown, F = T, R = never>\n{\n protected _isPending: boolean;\n protected _isFulfilled: boolean;\n protected _isRejected: boolean;\n\n protected _resolve!: PromiseResolver<T>;\n protected _reject!: PromiseRejecter<E>;\n\n protected _promise: Promise<F | R>;\n\n public constructor(onFulfilled?: FulfilledHandler<T, F> | null, onRejected?: RejectedHandler<E, R> | null)\n {\n this._isPending = true;\n this._isFulfilled = false;\n this._isRejected = false;\n\n let _resolve: PromiseResolver<T>;\n let _reject: PromiseRejecter<E>;\n\n const executor: PromiseExecutor<T, E> = (resolve, reject) =>\n {\n _resolve = resolve;\n _reject = reject;\n };\n\n let _onFulfilled: FulfilledHandler<T, F>;\n if (onFulfilled)\n {\n _onFulfilled = (value) =>\n {\n this._isPending = false;\n this._isFulfilled = true;\n\n return onFulfilled!(value);\n };\n }\n else\n {\n _onFulfilled = (value) =>\n {\n this._isPending = false;\n this._isFulfilled = true;\n\n return (value as unknown) as F;\n };\n }\n\n let _onRejected: RejectedHandler<E, R>;\n if (onRejected)\n {\n _onRejected = (reason) =>\n {\n this._isPending = false;\n this._isRejected = true;\n\n return onRejected!(reason);\n };\n }\n else\n {\n _onRejected = (reason) =>\n {\n this._isPending = false;\n this._isRejected = true;\n\n return (reason as unknown) as R;\n };\n }\n\n this._promise = new Promise<T>(executor)\n .then(_onFulfilled, _onRejected);\n\n this._resolve = _resolve!;\n this._reject = _reject!;\n }\n\n public get isPending(): boolean { return this._isPending; }\n public get isFulfilled(): boolean { return this._isFulfilled; }\n public get isRejected(): boolean { return this._isRejected; }\n\n public get resolve(): PromiseResolver<T> { return this._resolve; }\n public get reject(): PromiseRejecter<E> { return this._reject; }\n\n public then<N = F | R, H = R>(\n onFulfilled?: FulfilledHandler<F | R, N> | null,\n onRejected?: RejectedHandler<R, H> | null): Promise<N | H>\n {\n return this._promise.then(onFulfilled, onRejected);\n }\n public catch<H = R>(onRejected?: RejectedHandler<R, H> | null): Promise<F | R | H>\n {\n return this._promise.catch(onRejected);\n }\n public finally(onFinally?: (() => void) | null): Promise<F | R>\n {\n return this._promise.finally(onFinally);\n }\n\n public watch(promise: Promise<T>): this\n {\n promise.then(this.resolve, this.reject);\n\n return this;\n }\n\n public get [Symbol.toStringTag]() { return \"DeferredPromise\"; }\n}\n","import type { FulfilledHandler, PromiseExecutor, RejectedHandler } from \"../../types.js\";\n\nexport default class SmartPromise<T = void, E = unknown>\n{\n protected _isPending: boolean;\n protected _isFulfilled: boolean;\n protected _isRejected: boolean;\n\n protected _promise: Promise<T | E>;\n\n public constructor(executor: PromiseExecutor<T, E>)\n {\n this._isPending = true;\n this._isFulfilled = false;\n this._isRejected = false;\n\n const _resolve = (result: T): T =>\n {\n this._isPending = false;\n this._isFulfilled = true;\n\n return result;\n };\n const _reject = (reason: E): E =>\n {\n this._isPending = false;\n this._isRejected = true;\n\n return reason;\n };\n\n this._promise = new Promise<T>(executor)\n .then(_resolve, _reject);\n }\n\n public get isPending(): boolean { return this._isPending; }\n public get isFulfilled(): boolean { return this._isFulfilled; }\n public get isRejected(): boolean { return this._isRejected; }\n\n public then<F = T, R = E>(\n onFulfilled?: FulfilledHandler<T | E, F> | null,\n onRejected?: RejectedHandler<E, R> | null): Promise<F | R>\n {\n return this._promise.then(onFulfilled, onRejected);\n }\n public catch<R = E>(onRejected?: RejectedHandler<E, R> | null): Promise<T | E | R>\n {\n return this._promise.catch(onRejected);\n }\n public finally(onFinally?: (() => void) | null): Promise<T | E>\n {\n return this._promise.finally(onFinally);\n }\n\n public get [Symbol.toStringTag]() { return \"SmartPromise\"; }\n}\n","export default class Random\n{\n public static Boolean(ratio: number = 0.5): boolean\n {\n return (Math.random() < ratio);\n }\n\n public static Integer(max: number): number;\n public static Integer(min: number, max: number): number;\n public static Integer(min: number, max?: number): number\n {\n if (max === undefined)\n {\n return Math.floor(Math.random() * min);\n }\n\n return Math.floor(Math.random() * (max - min) + min);\n }\n\n public static Decimal(max: number): number;\n public static Decimal(min: number, max: number): number;\n public static Decimal(min: number, max?: number): number\n {\n if (max === undefined)\n {\n return (Math.random() * min);\n }\n\n return (Math.random() * (max - min) + min);\n }\n\n public static Choice<T>(elements: T[]): T\n {\n return elements[this.Integer(elements.length)];\n }\n\n // eslint-disable-next-line no-useless-constructor\n private constructor() { }\n}\n","export async function delay(milliseconds: number): Promise<void>\n{\n return new Promise<void>((resolve, reject) => setTimeout(resolve, milliseconds));\n}\n\nexport async function nextAnimationFrame(): Promise<void>\n{\n return new Promise<void>((resolve, reject) => requestAnimationFrame(() => resolve()));\n}\n","import { SmartIterator } from \"../models/index.js\";\n\nexport enum DateUnit\n{\n Second = 1000,\n Minute = 60 * Second,\n Hour = 60 * Minute,\n Day = 24 * Hour,\n Week = 7 * Day,\n Month = 30 * Day,\n Year = 365 * Day\n}\n\nexport function dateDifference(start: Date, end: Date, unit = DateUnit.Day): number\n{\n return Math.floor((end.getTime() - start.getTime()) / unit);\n}\n\nexport function dateRange(start: Date, end: Date, offset = DateUnit.Day): SmartIterator<Date>\n{\n return new SmartIterator<Date>(function* ()\n {\n const endTime = end.getTime();\n\n let unixTime: number = start.getTime();\n while (unixTime < endTime)\n {\n yield new Date(unixTime);\n\n unixTime += offset;\n }\n });\n}\n\nexport function dateRound(date: Date, unit = DateUnit.Day): Date\n{\n return new Date(Math.floor(date.getTime() / unit) * unit);\n}\n","export async function loadScript(scriptUrl: string, scriptType = \"text/javascript\"): Promise<void>\n{\n return new Promise<void>((resolve, reject) =>\n {\n const script = document.createElement(\"script\");\n\n script.async = true;\n script.defer = true;\n script.src = scriptUrl;\n script.type = scriptType;\n\n script.onload = () => resolve();\n script.onerror = () => reject();\n\n document.body.appendChild(script);\n });\n}\n","import { SmartIterator } from \"../models/index.js\";\n\nexport function count<T>(elements: Iterable<T>): number\n{\n if (Array.isArray(elements)) { return elements.length; }\n\n let _count = 0;\n for (const _ of elements) { _count += 1; }\n\n return _count;\n}\n\nexport function enumerate<T>(elements: Iterable<T>): SmartIterator<[number, T]>\n{\n return new SmartIterator<[number, T]>(function* ()\n {\n let index = 0;\n\n for (const element of elements)\n {\n yield [index, element];\n\n index += 1;\n }\n });\n}\n\nexport function range(end: number): SmartIterator<number>;\nexport function range(start: number, end: number): SmartIterator<number>;\nexport function range(start: number, end: number, step: number): SmartIterator<number>;\nexport function range(start: number, end?: number, step = 1): SmartIterator<number>\n{\n return new SmartIterator<number>(function* ()\n {\n if (end === undefined)\n {\n end = start;\n start = 0;\n }\n\n if (start > end) { step = step ?? -1; }\n\n for (let index = start; index < end; index += step) { yield index; }\n });\n}\n\nexport function shuffle<T>(iterable: Iterable<T>): T[]\n{\n const array = Array.from(iterable);\n\n for (let index = array.length - 1; index > 0; index -= 1)\n {\n const jndex = Math.floor(Math.random() * (index + 1));\n\n [array[index], array[jndex]] = [array[jndex], array[index]];\n }\n\n return array;\n}\n\nexport function unique<T>(elements: Iterable<T>): SmartIterator<T>\n{\n return new SmartIterator<T>(function* ()\n {\n const values = new Set<T>();\n\n for (const element of elements)\n {\n if (values.has(element)) { continue; }\n\n values.add(element);\n\n yield element;\n }\n });\n}\n\nexport function zip<T, U>(first: Iterable<T>, second: Iterable<U>): SmartIterator<[T, U]>\n{\n return new SmartIterator<[T, U]>(function* ()\n {\n const firstIterator = first[Symbol.iterator]();\n const secondIterator = second[Symbol.iterator]();\n\n while (true)\n {\n const firstResult = firstIterator.next();\n const secondResult = secondIterator.next();\n\n if ((firstResult.done) || (secondResult.done)) { break; }\n\n yield [firstResult.value, secondResult.value];\n }\n });\n}\n","import { zip } from \"./iterator.js\";\n\nexport function average<T extends number>(values: Iterable<T>): number;\nexport function average<T extends number>(values: Iterable<T>, weights: Iterable<number>): number;\nexport function average<T extends number>(values: Iterable<T>, weights?: Iterable<number>): number\n{\n if (weights === undefined)\n {\n let _sum = 0;\n let _count = 0;\n\n for (const value of values)\n {\n _sum += value;\n _count += 1;\n }\n\n return _sum / _count;\n }\n\n let _sum = 0;\n let _count = 0;\n\n for (const [value, weight] of zip(values, weights))\n {\n _sum += value * weight;\n _count += weight;\n }\n\n return _sum / _count;\n}\n\nexport function hash(value: string): number\n{\n let hashedValue = 0;\n for (let index = 0; index < value.length; index += 1)\n {\n const char = value.charCodeAt(index);\n\n hashedValue = ((hashedValue << 5) - hashedValue) + char;\n hashedValue |= 0;\n }\n\n return hashedValue;\n}\n\nexport function sum<T extends number>(values: Iterable<T>): number\n{\n let _sum = 0;\n for (const value of values) { _sum += value; }\n\n return _sum;\n}\n","export function capitalize(value: string): string\n{\n return `${value.charAt(0).toUpperCase()}${value.slice(1)}`;\n}\n","export const VERSION = \"1.3.3\";\n\nexport {\n AggregatedIterator,\n Aggregator,\n DeferredPromise,\n Exception,\n JsonStorage,\n ReducedIterator,\n SmartIterator,\n SmartPromise,\n Subscribers\n\n} from \"./models/index.js\";\n\nexport {\n average,\n capitalize,\n count,\n delay,\n dateDifference,\n dateRange,\n dateRound,\n DateUnit,\n hash,\n loadScript,\n nextAnimationFrame,\n Random,\n range,\n shuffle,\n sum,\n unique,\n zip\n\n} from \"./utils/index.js\";\n\nexport type {\n Constructor,\n FulfilledHandler,\n GeneratorFunction,\n Interval,\n Iteratee,\n MaybePromise,\n PromiseExecutor,\n PromiseRejecter,\n PromiseResolver,\n Reducer,\n RejectedHandler,\n Timeout\n\n} from \"./types.js\";\n"],"names":["Exception","error","exc","message","cause","name","SmartIterator","argument","__publicField","value","predicate","index","result","iterator","iteratee","reducer","initialValue","accumulator","values","ReducedIterator","elements","key","element","AggregatedIterator","indexes","_","accumulators","keys","counters","count","firsts","lasts","groups","Aggregator","JsonStorage","preferPersistence","storage","propertyName","defaultValue","propertyValue","newValue","encodedValue","persistent","Subscribers","subscriber","args","DeferredPromise","onFulfilled","onRejected","_resolve","_reject","executor","resolve","reject","_onFulfilled","_onRejected","reason","onFinally","promise","SmartPromise","Random","ratio","min","max","delay","milliseconds","nextAnimationFrame","DateUnit","dateDifference","start","end","unit","dateRange","offset","endTime","unixTime","dateRound","date","loadScript","scriptUrl","scriptType","script","_count","range","step","shuffle","iterable","array","jndex","unique","zip","first","second","firstIterator","secondIterator","firstResult","secondResult","average","weights","_sum","weight","hash","hashedValue","char","sum","capitalize","VERSION"],"mappings":"oYAAA,MAAqBA,UAAkB,KACvC,CACI,OAAc,YAAYC,EAC1B,CACI,GAAIA,aAAiBD,EAEV,OAAAC,EAEX,GAAIA,aAAiB,MACrB,CACI,MAAMC,EAAM,IAAIF,EAAUC,EAAM,OAAO,EAEvC,OAAAC,EAAI,MAAQD,EAAM,MAClBC,EAAI,KAAOD,EAAM,KAEVC,CACX,CAEA,OAAO,IAAIF,EAAU,GAAGC,CAAK,EAAE,CACnC,CAEO,YAAYE,EAAiBC,EAAiBC,EAAO,YAC5D,CACI,MAAMF,CAAO,EAEb,KAAK,MAAQC,EACb,KAAK,KAAOC,EAERD,IAEIA,aAAiB,MAEjB,KAAK,OAAS;AAAA;AAAA,YAAiBA,EAAM,KAAK,GAI1C,KAAK,OAAS;AAAA;AAAA,YAAiBA,CAAK,GAGhD,CACJ,CCtCA,MAAqBE,CACrB,CAUW,YAAYC,EACnB,CAVUC,EAAA,kBAEHA,EAAA,eACAA,EAAA,cAQCD,aAAoB,SAEpB,KAAK,UAAYA,IAEZ,OAAO,YAAYA,EAExB,KAAK,UAAYA,EAAS,OAAO,QAAQ,EAAE,EAI3C,KAAK,UAAYA,EAGjB,KAAK,UAAU,SAAU,KAAK,OAAUE,GAAc,KAAK,UAAU,OAAQA,CAAK,GAClF,KAAK,UAAU,QAAS,KAAK,MAASR,GAAoB,KAAK,UAAU,MAAOA,CAAK,EAC7F,CAEO,MAAMS,EACb,CACI,IAAIC,EAAQ,EAGZ,OACA,CACU,MAAAC,EAAS,KAAK,UAAU,KAAK,EAEnC,GAAIA,EAAO,KAAe,MAAA,GAC1B,GAAI,CAAEF,EAAUE,EAAO,MAAOD,CAAK,EAAa,MAAA,GAEvCA,GAAA,CACb,CACJ,CACO,KAAKD,EACZ,CACI,IAAIC,EAAQ,EAGZ,OACA,CACU,MAAAC,EAAS,KAAK,UAAU,KAAK,EAEnC,GAAIA,EAAO,KAAe,MAAA,GAC1B,GAAIF,EAAUE,EAAO,MAAOD,CAAK,EAAY,MAAA,GAEpCA,GAAA,CACb,CACJ,CAEO,OAAOD,EACd,CACI,MAAMG,EAAW,KAAK,UAEf,OAAA,IAAIP,EAAoB,WAC/B,CACI,IAAIK,EAAQ,EAEZ,OACA,CACU,MAAAC,EAASC,EAAS,OAExB,GAAID,EAAO,KAAQ,OAAOA,EAAO,MAC7BF,EAAUE,EAAO,MAAOD,CAAK,IAAK,MAAMC,EAAO,OAE1CD,GAAA,CACb,CAAA,CACH,CACL,CACO,IAAOG,EACd,CACI,MAAMD,EAAW,KAAK,UAEf,OAAA,IAAIP,EAAoB,WAC/B,CACI,IAAIK,EAAQ,EAEZ,OACA,CACU,MAAAC,EAASC,EAAS,OACxB,GAAID,EAAO,KAAQ,OAAOA,EAAO,MAE3B,MAAAE,EAASF,EAAO,MAAOD,CAAK,EAEzBA,GAAA,CACb,CAAA,CACH,CACL,CACO,OAAUI,EAAwBC,EACzC,CACI,IAAIL,EAAQ,EACRM,EAAcD,EAClB,GAAIC,IAAgB,OACpB,CACU,MAAAL,EAAS,KAAK,UAAU,KAAK,EACnC,GAAIA,EAAO,KAAc,MAAA,IAAI,UAAU,gDAAgD,EAEvFK,EAAeL,EAAO,MACbD,GAAA,CACb,CAGA,OACA,CACU,MAAAC,EAAS,KAAK,UAAU,KAAK,EACnC,GAAIA,EAAO,KAAe,OAAAK,EAE1BA,EAAcF,EAAQE,EAAaL,EAAO,MAAOD,CAAK,EAE7CA,GAAA,CACb,CACJ,CAEO,WACP,CACW,OAAA,KAAK,IAAI,CAACF,EAAOE,IAAU,CAACA,EAAOF,CAAK,CAAC,CACpD,CACO,QACP,CACI,MAAMI,EAAW,KAAK,UAEf,OAAA,IAAIP,EAAoB,WAC/B,CACU,MAAAY,MAAa,IAEnB,OACA,CACU,MAAAN,EAASC,EAAS,OAExB,GAAID,EAAO,KAAQ,OAAOA,EAAO,MAC7BM,EAAO,IAAIN,EAAO,KAAK,IAEpBM,EAAA,IAAIN,EAAO,KAAK,EAEvB,MAAMA,EAAO,MACjB,CAAA,CACH,CACL,CAEO,OACP,CACI,IAAID,EAAQ,EAGZ,OACA,CAEI,GADe,KAAK,UAAU,KAAK,EACxB,KAAe,OAAAA,EAEjBA,GAAA,CACb,CACJ,CACO,QAAQG,EACf,CACI,IAAIH,EAAQ,EAGZ,OACA,CACU,MAAAC,EAAS,KAAK,UAAU,KAAK,EACnC,GAAIA,EAAO,KAAQ,OAEVE,EAAAF,EAAO,MAAOD,CAAK,EAEnBA,GAAA,CACb,CACJ,CAEO,QAAQO,EACf,CACI,OAAO,KAAK,UAAU,KAAK,GAAGA,CAAM,CACxC,CAEO,SACP,CACW,OAAA,MAAM,KAAK,IAAmB,CACzC,CAEA,CAAQ,OAAO,QAAQ,GAA4B,CAAS,OAAA,IAAM,CACtE,CC3LA,MAAqBC,CACrB,CAOW,YAAYZ,EACnB,CAPUC,EAAA,kBAQD,KAAA,UAAY,IAAIF,EAAcC,CAAQ,CAC/C,CAEO,OAAOG,EACd,CACI,MAAMU,EAAW,KAAK,UAEf,OAAA,IAAID,EAAgB,WAC3B,CACe,SAAA,CAACR,EAAO,CAACU,EAAKC,CAAO,CAAC,IAAKF,EAAS,YAEvCV,EAAUW,EAAKC,EAASX,CAAK,IAEvB,KAAA,CAACU,EAAKC,CAAO,EAE3B,CACH,CACL,CACO,IAAOR,EACd,CACI,MAAMM,EAAW,KAAK,UAEf,OAAA,IAAID,EAAgB,WAC3B,CACe,SAAA,CAACR,EAAO,CAACU,EAAKC,CAAO,CAAC,IAAKF,EAAS,YAE3C,KAAM,CAACC,EAAKP,EAASO,EAAKC,EAASX,CAAK,CAAC,CAC7C,CACH,CACL,CAEO,SACP,CACI,OAAO,MAAM,KAAK,KAAK,MAAM,EAAE,QAAQ,CAC3C,CACO,OACP,CACI,OAAO,IAAI,IAAI,KAAK,UAAU,QAAS,CAAA,CAC3C,CACO,UACP,CACI,OAAO,OAAO,YAAY,KAAK,UAAU,QAAS,CAAA,CACtD,CACJ,CCpDA,MAAqBY,CACrB,CAOW,YAAYhB,EACnB,CAPUC,EAAA,kBAQD,KAAA,UAAY,IAAIF,EAAcC,CAAQ,CAC/C,CAEO,MAAMG,EACb,CACU,MAAAc,MAAc,IAEpB,SAAW,CAACH,EAAKC,CAAO,IAAK,KAAK,UAClC,CACU,KAAA,CAACX,EAAOC,CAAM,EAAIY,EAAQ,IAAIH,CAAG,GAAK,CAAC,EAAG,EAAI,EAE9CT,GAEEY,EAAA,IAAIH,EAAK,CAACV,EAAQ,EAAGD,EAAUW,EAAKC,EAASX,CAAK,CAAC,CAAC,CAChE,CAEO,OAAA,IAAIQ,EAAgB,WAC3B,CACI,SAAW,CAACE,EAAK,CAACI,EAAGb,CAAM,CAAC,IAAKY,EAEvB,KAAA,CAACH,EAAKT,CAAM,CACtB,CACH,CACL,CACO,KAAKF,EACZ,CACU,MAAAc,MAAc,IAEpB,SAAW,CAACH,EAAKC,CAAO,IAAK,KAAK,UAClC,CACU,KAAA,CAACX,EAAOC,CAAM,EAAIY,EAAQ,IAAIH,CAAG,GAAK,CAAC,EAAG,EAAK,EAEjDT,GAEIY,EAAA,IAAIH,EAAK,CAACV,EAAQ,EAAGD,EAAUW,EAAKC,EAASX,CAAK,CAAC,CAAC,CAChE,CAEO,OAAA,IAAIQ,EAAgB,WAC3B,CACI,SAAW,CAACE,EAAK,CAACI,EAAGb,CAAM,CAAC,IAAKY,EAEvB,KAAA,CAACH,EAAKT,CAAM,CACtB,CACH,CACL,CAEO,OAAOF,EACd,CACI,MAAMU,EAAW,KAAK,UAEf,OAAA,IAAIG,EAAmB,WAC9B,CACU,MAAAC,MAAc,IAEpB,SAAW,CAACH,EAAKC,CAAO,IAAKF,EAC7B,CACI,MAAMT,EAAQa,EAAQ,IAAIH,CAAG,GAAK,EAE1BG,EAAA,IAAIH,EAAKV,EAAQ,CAAC,EAEtBD,EAAUW,EAAKC,EAASX,CAAK,IAAW,KAAA,CAACU,EAAKC,CAAO,EAC7D,CAAA,CACH,CACL,CACO,IAAOR,EACd,CACI,MAAMM,EAAW,KAAK,UAEf,OAAA,IAAIG,EAAmB,WAC9B,CACU,MAAAC,MAAc,IAEpB,SAAW,CAACH,EAAKC,CAAO,IAAKF,EAC7B,CACI,MAAMT,EAAQa,EAAQ,IAAIH,CAAG,GAAK,EAE1BG,EAAA,IAAIH,EAAKV,EAAQ,CAAC,EAE1B,KAAM,CAACU,EAAKP,EAASO,EAAKC,EAASX,CAAK,CAAC,CAC7C,CAAA,CACH,CACL,CACO,OAAUI,EAA8BC,EAC/C,CACU,MAAAU,MAAmB,IAEzB,SAAW,CAACL,EAAKC,CAAO,IAAK,KAAK,UAClC,CACQ,IAAAX,EACAM,EAEA,GAAAS,EAAa,IAAIL,CAAG,EAEpB,CAACV,EAAOM,CAAW,EAAIS,EAAa,IAAIL,CAAG,EAElCV,GAAA,UAEJK,IAAiB,OAEdL,EAAA,EACMM,EAAAD,MAGlB,CACIU,EAAa,IAAIL,EAAK,CAAC,EAAIC,CAAwB,CAAC,EAEpD,QACJ,CAEAL,EAAcF,EAAQM,EAAKJ,EAAaK,EAASX,CAAK,EAEtDe,EAAa,IAAIL,EAAK,CAACV,EAAOM,CAAW,CAAC,CAC9C,CAEO,OAAA,IAAIE,EAAgB,WAC3B,CACI,SAAW,CAACE,EAAK,CAACI,EAAGR,CAAW,CAAC,IAAKS,EAE5B,KAAA,CAACL,EAAKJ,CAAW,CAC3B,CACH,CACL,CAEO,QACP,CACI,MAAMG,EAAW,KAAK,UAEf,OAAA,IAAIG,EAAmB,WAC9B,CACU,MAAAI,MAAW,IAEjB,SAAW,CAACN,EAAKC,CAAO,IAAKF,EAC7B,CACI,MAAMF,EAASS,EAAK,IAAIN,CAAG,OAAS,IAEhCH,EAAO,IAAII,CAAO,IAEtBJ,EAAO,IAAII,CAAO,EACbK,EAAA,IAAIN,EAAKH,CAAM,EAEd,KAAA,CAACG,EAAKC,CAAO,EACvB,CAAA,CACH,CACL,CAEO,OACP,CACU,MAAAM,MAAe,IAErB,SAAW,CAACP,CAAG,IAAK,KAAK,UACzB,CACI,MAAMQ,EAAQD,EAAS,IAAIP,CAAG,GAAK,EAE1BO,EAAA,IAAIP,EAAKQ,EAAQ,CAAC,CAC/B,CAEO,OAAA,IAAIV,EAAgB,WAC3B,CACI,SAAW,CAACE,EAAKQ,CAAK,IAAKD,EAEjB,KAAA,CAACP,EAAKQ,CAAK,CACrB,CACH,CACL,CACO,OACP,CACU,MAAAC,MAAa,IAEnB,SAAW,CAACT,EAAKC,CAAO,IAAK,KAAK,UAE1BQ,EAAO,IAAIT,CAAG,GAEXS,EAAA,IAAIT,EAAKC,CAAO,EAGpB,OAAA,IAAIH,EAAgB,WAC3B,CACI,SAAW,CAACE,EAAKC,CAAO,IAAKQ,EAEnB,KAAA,CAACT,EAAKC,CAAO,CACvB,CACH,CACL,CACO,MACP,CACU,MAAAS,MAAY,IAElB,SAAW,CAACV,EAAKC,CAAO,IAAK,KAAK,UAExBS,EAAA,IAAIV,EAAKC,CAAO,EAGnB,OAAA,IAAIH,EAAgB,WAC3B,CACI,SAAW,CAACE,EAAKC,CAAO,IAAKS,EAEnB,KAAA,CAACV,EAAKC,CAAO,CACvB,CACH,CACL,CAEO,SACP,CACI,OAAO,MAAM,KAAK,KAAK,MAAM,EAAE,QAAQ,CAC3C,CACO,OACP,CACU,MAAAU,MAAa,IAEnB,SAAW,CAACX,EAAKC,CAAO,IAAK,KAAK,UAClC,CACI,MAAMb,EAAQuB,EAAO,IAAIX,CAAG,GAAK,CAAA,EAEjCZ,EAAM,KAAKa,CAAO,EACXU,EAAA,IAAIX,EAAKZ,CAAK,CACzB,CAEO,OAAAuB,CACX,CACO,UACP,CACI,MAAMA,EAAS,CAAA,EAEf,SAAW,CAACX,EAAKC,CAAO,IAAK,KAAK,UAClC,CACI,MAAMb,EAAQuB,EAAOX,CAAG,GAAK,CAAA,EAE7BZ,EAAM,KAAKa,CAAO,EAClBU,EAAOX,CAAG,EAAIZ,CAClB,CAEO,OAAAuB,CACX,CACJ,CCnPA,MAAqBC,CACrB,CAOW,YAAY1B,EACnB,CAPUC,EAAA,kBAQD,KAAA,UAAY,IAAIF,EAAcC,CAAQ,CAC/C,CAEO,OAAOG,EACd,CACI,OAAO,IAAIuB,EAAW,KAAK,UAAU,OAAOvB,CAAS,CAAC,CAC1D,CACO,IAAOI,EACd,CACI,OAAO,IAAImB,EAAW,KAAK,UAAU,IAAInB,CAAQ,CAAC,CACtD,CAEO,QACP,CACI,OAAO,IAAImB,EAAW,KAAK,UAAU,OAAQ,CAAA,CACjD,CAEO,MAA6BnB,EACpC,CACI,OAAO,IAAIS,EAAmB,KAAK,UAAU,IAAI,CAACD,EAASX,IAIhD,CAFKG,EAASQ,EAASX,CAAK,EAEtBW,CAAO,CACvB,CAAC,CACN,CACJ,CClCA,MAAqBY,CACrB,CAMW,YAAYC,EAAoB,GACvC,CANU3B,EAAA,2BAEAA,EAAA,kBACAA,EAAA,oBAIN,KAAK,mBAAqB2B,EAE1B,KAAK,UAAY,OAAO,eACxB,KAAK,YAAc,OAAO,YAC9B,CAKU,KAAQC,EAAkBC,EAAsBC,EAC1D,CACU,MAAAC,EAAgBH,EAAQ,QAAQC,CAAY,EAClD,GAAIE,EAGA,GAAA,CACW,OAAA,KAAK,MAAMA,CAAa,OAGnC,CAEY,QAAA,KACJ,QAAQA,CAAa,gBAAgBF,CAAY,sDAAA,EAGrDD,EAAQ,WAAWC,CAAY,CACnC,CAGG,OAAAC,CACX,CACU,KAAQF,EAAkBC,EAAsBG,EAC1D,CACU,MAAAC,EAAe,KAAK,UAAUD,CAAQ,EACxCC,EAEQL,EAAA,QAAQC,EAAcI,CAAY,EAI1CL,EAAQ,WAAWC,CAAY,CAEvC,CAcO,IAAOA,EAAsBC,EAAkBI,EAAa,KAAK,mBACxE,CACI,MAAMN,EAAUM,EAAa,KAAK,YAAc,KAAK,UAErD,OAAO,KAAK,KAAQN,EAASC,EAAcC,CAAY,CAC3D,CAYO,OAAUD,EAAsBC,EACvC,CACI,OAAO,KAAK,KAAQ,KAAK,UAAWD,EAAcC,CAAY,CAClE,CAaO,SAAYD,EAAsBC,EACzC,CACI,OAAO,KAAK,OAAUD,CAAY,GAAK,KAAK,KAAQA,EAAcC,CAAY,CAClF,CAYO,KAAQD,EAAsBC,EACrC,CACI,OAAO,KAAK,KAAQ,KAAK,YAAaD,EAAcC,CAAY,CACpE,CAUO,IAAID,EAAsBK,EACjC,CAGW,OAFSA,EAAa,KAAK,YAAc,KAAK,WAEtC,QAAQL,CAAY,IAAM,IAC7C,CAQO,MAAMA,EACb,CACI,OAAO,KAAK,UAAU,QAAQA,CAAY,IAAM,IACpD,CASO,KAAKA,EACZ,CACI,OAAO,KAAK,MAAMA,CAAY,GAAK,KAAK,OAAOA,CAAY,CAC/D,CAQO,OAAOA,EACd,CACI,OAAO,KAAK,YAAY,QAAQA,CAAY,IAAM,IACtD,CAUO,IAAOA,EAAsBG,EAAcE,EAAa,KAAK,mBACpE,CACI,MAAMN,EAAUM,EAAa,KAAK,YAAc,KAAK,UAEhD,KAAA,KAAQN,EAASC,EAAcG,CAAQ,CAChD,CAQO,SAAYH,EAAsBG,EACzC,CACI,KAAK,KAAQ,KAAK,UAAWH,EAAcG,CAAQ,CACvD,CAQO,MAASH,EAAsBG,EACtC,CACI,KAAK,KAAQ,KAAK,YAAaH,EAAcG,CAAQ,CACzD,CAOO,OAAOH,EACd,CACS,KAAA,UAAU,WAAWA,CAAY,CAC1C,CAMO,MAAMA,EACb,CACS,KAAA,YAAY,WAAWA,CAAY,CAC5C,CAMO,MAAMA,EACb,CACS,KAAA,UAAU,WAAWA,CAAY,EACjC,KAAA,YAAY,WAAWA,CAAY,CAC5C,CACJ,CC9OA,MAAqBM,CACrB,CAGW,aACP,CAHUnC,EAAA,qBAIN,KAAK,aAAe,EACxB,CAEO,IAAIoC,EACX,CACS,KAAA,aAAa,KAAKA,CAAU,CACrC,CACO,OAAOA,EACd,CACI,MAAMjC,EAAQ,KAAK,aAAa,QAAQiC,CAAU,EAClD,GAAIjC,EAAQ,EAEF,MAAA,IAAIX,EAAU,8DAA8D,EAGjF,KAAA,aAAa,OAAOW,EAAO,CAAC,CACrC,CAEO,QAAQkC,EACf,CACW,OAAA,KAAK,aACP,QACA,IAAKD,GAAeA,EAAW,GAAGC,CAAI,CAAC,CAChD,CACJ,CCvBA,MAAqBC,CACrB,CAUW,YAAYC,EAA6CC,EAChE,CAVUxC,EAAA,mBACAA,EAAA,qBACAA,EAAA,oBAEAA,EAAA,iBACAA,EAAA,gBAEAA,EAAA,iBAIN,KAAK,WAAa,GAClB,KAAK,aAAe,GACpB,KAAK,YAAc,GAEf,IAAAyC,EACAC,EAEE,MAAAC,EAAkC,CAACC,EAASC,IAClD,CACeJ,EAAAG,EACDF,EAAAG,CAAA,EAGV,IAAAC,EACAP,EAEAO,EAAgB7C,IAEZ,KAAK,WAAa,GAClB,KAAK,aAAe,GAEbsC,EAAatC,CAAK,GAK7B6C,EAAgB7C,IAEZ,KAAK,WAAa,GAClB,KAAK,aAAe,GAEZA,GAIZ,IAAA8C,EACAP,EAEAO,EAAeC,IAEX,KAAK,WAAa,GAClB,KAAK,YAAc,GAEZR,EAAYQ,CAAM,GAK7BD,EAAeC,IAEX,KAAK,WAAa,GAClB,KAAK,YAAc,GAEXA,GAIhB,KAAK,SAAW,IAAI,QAAWL,CAAQ,EAClC,KAAKG,EAAcC,CAAW,EAEnC,KAAK,SAAWN,EAChB,KAAK,QAAUC,CACnB,CAEA,IAAW,WAAqB,CAAE,OAAO,KAAK,UAAY,CAC1D,IAAW,aAAuB,CAAE,OAAO,KAAK,YAAc,CAC9D,IAAW,YAAsB,CAAE,OAAO,KAAK,WAAa,CAE5D,IAAW,SAA8B,CAAE,OAAO,KAAK,QAAU,CACjE,IAAW,QAA6B,CAAE,OAAO,KAAK,OAAS,CAExD,KACHH,EACAC,EACJ,CACI,OAAO,KAAK,SAAS,KAAKD,EAAaC,CAAU,CACrD,CACO,MAAaA,EACpB,CACW,OAAA,KAAK,SAAS,MAAMA,CAAU,CACzC,CACO,QAAQS,EACf,CACW,OAAA,KAAK,SAAS,QAAQA,CAAS,CAC1C,CAEO,MAAMC,EACb,CACI,OAAAA,EAAQ,KAAK,KAAK,QAAS,KAAK,MAAM,EAE/B,IACX,CAEA,IAAY,OAAO,WAAW,GAAI,CAAS,MAAA,iBAAmB,CAClE,CClHA,MAAqBC,CACrB,CAOW,YAAYR,EACnB,CAPU3C,EAAA,mBACAA,EAAA,qBACAA,EAAA,oBAEAA,EAAA,iBAIN,KAAK,WAAa,GAClB,KAAK,aAAe,GACpB,KAAK,YAAc,GAEb,MAAAyC,EAAYrC,IAEd,KAAK,WAAa,GAClB,KAAK,aAAe,GAEbA,GAELsC,EAAWM,IAEb,KAAK,WAAa,GAClB,KAAK,YAAc,GAEZA,GAGX,KAAK,SAAW,IAAI,QAAWL,CAAQ,EAClC,KAAKF,EAAUC,CAAO,CAC/B,CAEA,IAAW,WAAqB,CAAE,OAAO,KAAK,UAAY,CAC1D,IAAW,aAAuB,CAAE,OAAO,KAAK,YAAc,CAC9D,IAAW,YAAsB,CAAE,OAAO,KAAK,WAAa,CAErD,KACHH,EACAC,EACJ,CACI,OAAO,KAAK,SAAS,KAAKD,EAAaC,CAAU,CACrD,CACO,MAAaA,EACpB,CACW,OAAA,KAAK,SAAS,MAAMA,CAAU,CACzC,CACO,QAAQS,EACf,CACW,OAAA,KAAK,SAAS,QAAQA,CAAS,CAC1C,CAEA,IAAY,OAAO,WAAW,GAAI,CAAS,MAAA,cAAgB,CAC/D,CCvDA,MAAqBG,CACrB,CACI,OAAc,QAAQC,EAAgB,GACtC,CACY,OAAA,KAAK,OAAW,EAAAA,CAC5B,CAIA,OAAc,QAAQC,EAAaC,EACnC,CACI,OAEW,KAAK,MAFZA,IAAQ,OAEU,KAAK,SAAWD,EAGpB,KAAK,OAAY,GAAAC,EAAMD,GAAOA,CAHP,CAI7C,CAIA,OAAc,QAAQA,EAAaC,EACnC,CACI,OAAIA,IAAQ,OAEA,KAAK,OAAW,EAAAD,EAGpB,KAAK,OAAY,GAAAC,EAAMD,GAAOA,CAC1C,CAEA,OAAc,OAAU1C,EACxB,CACI,OAAOA,EAAS,KAAK,QAAQA,EAAS,MAAM,CAAC,CACjD,CAGQ,aAAc,CAAE,CAC5B,CCtCA,eAAsB4C,EAAMC,EAC5B,CACW,OAAA,IAAI,QAAc,CAACb,EAASC,IAAW,WAAWD,EAASa,CAAY,CAAC,CACnF,CAEA,eAAsBC,GACtB,CACW,OAAA,IAAI,QAAc,CAACd,EAASC,IAAW,sBAAsB,IAAMD,EAAS,CAAA,CAAC,CACxF,CCNY,IAAAe,GAAAA,IAERA,EAAAA,EAAA,OAAS,GAAT,EAAA,SACAA,EAAAA,EAAA,OAAS,GAAT,EAAA,SACAA,EAAAA,EAAA,KAAO,IAAP,EAAA,OACAA,EAAAA,EAAA,IAAM,KAAN,EAAA,MACAA,EAAAA,EAAA,KAAO,MAAP,EAAA,OACAA,EAAAA,EAAA,MAAQ,MAAR,EAAA,QACAA,EAAAA,EAAA,KAAO,OAAP,EAAA,OARQA,IAAAA,GAAA,CAAA,CAAA,EAWL,SAASC,EAAeC,EAAaC,EAAWC,EAAO,MAC9D,CACW,OAAA,KAAK,OAAOD,EAAI,UAAYD,EAAM,WAAaE,CAAI,CAC9D,CAEO,SAASC,EAAUH,EAAaC,EAAWG,EAAS,MAC3D,CACW,OAAA,IAAInE,EAAoB,WAC/B,CACU,MAAAoE,EAAUJ,EAAI,UAEhB,IAAAK,EAAmBN,EAAM,UAC7B,KAAOM,EAAWD,GAER,MAAA,IAAI,KAAKC,CAAQ,EAEXA,GAAAF,CAChB,CACH,CACL,CAEgB,SAAAG,EAAUC,EAAYN,EAAO,MAC7C,CACW,OAAA,IAAI,KAAK,KAAK,MAAMM,EAAK,UAAYN,CAAI,EAAIA,CAAI,CAC5D,CCrCsB,eAAAO,EAAWC,EAAmBC,EAAa,kBACjE,CACI,OAAO,IAAI,QAAc,CAAC5B,EAASC,IACnC,CACU,MAAA4B,EAAS,SAAS,cAAc,QAAQ,EAE9CA,EAAO,MAAQ,GACfA,EAAO,MAAQ,GACfA,EAAO,IAAMF,EACbE,EAAO,KAAOD,EAEPC,EAAA,OAAS,IAAM7B,IACf6B,EAAA,QAAU,IAAM5B,IAEd,SAAA,KAAK,YAAY4B,CAAM,CAAA,CACnC,CACL,CCdO,SAASpD,EAAST,EACzB,CACQ,GAAA,MAAM,QAAQA,CAAQ,EAAK,OAAOA,EAAS,OAE/C,IAAI8D,EAAS,EACb,UAAWzD,KAAKL,EAAsB8D,GAAA,EAE/B,OAAAA,CACX,CAoBO,SAASC,EAAMd,EAAeC,EAAcc,EAAO,EAC1D,CACW,OAAA,IAAI9E,EAAsB,WACjC,CACQgE,IAAQ,SAEFA,EAAAD,EACEA,EAAA,GAGRA,EAAQC,IAAOc,EAAOA,GAAQ,IAElC,QAASzE,EAAQ0D,EAAO1D,EAAQ2D,EAAK3D,GAASyE,EAAc,MAAAzE,CAAO,CACtE,CACL,CAEO,SAAS0E,EAAWC,EAC3B,CACU,MAAAC,EAAQ,MAAM,KAAKD,CAAQ,EAEjC,QAAS3E,EAAQ4E,EAAM,OAAS,EAAG5E,EAAQ,EAAGA,GAAS,EACvD,CACI,MAAM6E,EAAQ,KAAK,MAAM,KAAK,UAAY7E,EAAQ,EAAE,EAEpD,CAAC4E,EAAM5E,CAAK,EAAG4E,EAAMC,CAAK,CAAC,EAAI,CAACD,EAAMC,CAAK,EAAGD,EAAM5E,CAAK,CAAC,CAC9D,CAEO,OAAA4E,CACX,CAEO,SAASE,EAAUrE,EAC1B,CACW,OAAA,IAAId,EAAiB,WAC5B,CACU,MAAAY,MAAa,IAEnB,UAAWI,KAAWF,EAEdF,EAAO,IAAII,CAAO,IAEtBJ,EAAO,IAAII,CAAO,EAEZ,MAAAA,EACV,CACH,CACL,CAEgB,SAAAoE,EAAUC,EAAoBC,EAC9C,CACW,OAAA,IAAItF,EAAsB,WACjC,CACI,MAAMuF,EAAgBF,EAAM,OAAO,QAAQ,EAAE,EACvCG,EAAiBF,EAAO,OAAO,QAAQ,EAAE,EAE/C,OACA,CACU,MAAAG,EAAcF,EAAc,OAC5BG,EAAeF,EAAe,OAE/B,GAAAC,EAAY,MAAUC,EAAa,KAAS,MAEjD,KAAM,CAACD,EAAY,MAAOC,EAAa,KAAK,CAChD,CAAA,CACH,CACL,CC1FgB,SAAAC,EAA0B/E,EAAqBgF,EAC/D,CACI,GAAIA,IAAY,OAChB,CACI,IAAIC,EAAO,EACPjB,EAAS,EAEb,UAAWzE,KAASS,EAEhBiF,GAAQ1F,EACRyE,GAAU,EAGd,OAAOiB,EAAOjB,CAClB,CAEA,IAAIiB,EAAO,EACPjB,EAAS,EAEb,SAAW,CAACzE,EAAO2F,CAAM,IAAKV,EAAIxE,EAAQgF,CAAO,EAE7CC,GAAQ1F,EAAQ2F,EACNlB,GAAAkB,EAGd,OAAOD,EAAOjB,CAClB,CAEO,SAASmB,EAAK5F,EACrB,CACI,IAAI6F,EAAc,EAClB,QAAS3F,EAAQ,EAAGA,EAAQF,EAAM,OAAQE,GAAS,EACnD,CACU,MAAA4F,EAAO9F,EAAM,WAAWE,CAAK,EAEnB2F,GAAAA,GAAe,GAAKA,EAAeC,EACpCD,GAAA,CACnB,CAEO,OAAAA,CACX,CAEO,SAASE,EAAsBtF,EACtC,CACI,IAAIiF,EAAO,EACX,UAAW1F,KAASS,EAAkBiF,GAAA1F,EAE/B,OAAA0F,CACX,CCpDO,SAASM,EAAWhG,EAC3B,CACW,MAAA,GAAGA,EAAM,OAAO,CAAC,EAAE,aAAa,GAAGA,EAAM,MAAM,CAAC,CAAC,EAC5D,CCHO,MAAMiG,EAAU"}
|
|
1
|
+
{"version":3,"file":"core.umd.cjs","sources":["../src/models/exception.ts","../src/models/smart-iterator.ts","../src/models/aggregators/reduced-iterator.ts","../src/models/aggregators/aggregated-iterator.ts","../src/models/aggregators/index.ts","../src/models/json-storage.ts","../src/models/subscribers.ts","../src/models/promises/deferred-promise.ts","../src/models/promises/smart-promise.ts","../src/utils/random.ts","../src/utils/async.ts","../src/utils/date.ts","../src/utils/dom.ts","../src/utils/iterator.ts","../src/utils/math.ts","../src/utils/string.ts","../src/index.ts"],"sourcesContent":["export default class Exception extends Error\n{\n public static FromUnknown(error: unknown): Exception\n {\n if (error instanceof Exception)\n {\n return error;\n }\n if (error instanceof Error)\n {\n const exc = new Exception(error.message);\n\n exc.stack = error.stack;\n exc.name = error.name;\n\n return exc;\n }\n\n return new Exception(`${error}`);\n }\n\n public constructor(message: string, cause?: unknown, name = \"Exception\")\n {\n super(message);\n\n this.cause = cause;\n this.name = name;\n\n if (cause)\n {\n if (cause instanceof Error)\n {\n this.stack += `\\n\\nCaused by ${cause.stack}`;\n }\n else\n {\n this.stack += `\\n\\nCaused by ${cause}`;\n }\n }\n }\n}\n","import type { GeneratorFunction, Iteratee, Reducer } from \"../types.js\";\n\nexport default class SmartIterator<T, R = void, N = undefined> implements Iterator<T, R, N>\n{\n protected _iterator: Iterator<T, R, N>;\n\n public return?: (value?: R) => IteratorResult<T, R>;\n public throw?: (error?: unknown) => IteratorResult<T, R>;\n\n public constructor(iterable: Iterable<T>);\n public constructor(iterator: Iterator<T, R, N>);\n public constructor(generatorFn: GeneratorFunction<T, R, N>);\n public constructor(argument: Iterable<T> | Iterator<T, R, N> | GeneratorFunction<T, R, N>);\n public constructor(argument: Iterable<T> | Iterator<T, R, N> | GeneratorFunction<T, R, N>)\n {\n if (argument instanceof Function)\n {\n this._iterator = argument();\n }\n else if (Symbol.iterator in argument)\n {\n this._iterator = argument[Symbol.iterator]() as Iterator<T, R, N>;\n }\n else\n {\n this._iterator = argument;\n }\n\n if (this._iterator.return) { this.return = (value?: R) => this._iterator.return!(value); }\n if (this._iterator.throw) { this.throw = (error?: unknown) => this._iterator.throw!(error); }\n }\n\n public every(predicate: Iteratee<T, boolean>): boolean\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n\n if (result.done) { return true; }\n if (!(predicate(result.value, index))) { return false; }\n\n index += 1;\n }\n }\n public some(predicate: Iteratee<T, boolean>): boolean\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n\n if (result.done) { return false; }\n if (predicate(result.value, index)) { return true; }\n\n index += 1;\n }\n }\n\n public filter(predicate: Iteratee<T, boolean>): SmartIterator<T, R>\n {\n const iterator = this._iterator;\n\n return new SmartIterator<T, R>(function* ()\n {\n let index = 0;\n\n while (true)\n {\n const result = iterator.next();\n\n if (result.done) { return result.value; }\n if (predicate(result.value, index)) { yield result.value; }\n\n index += 1;\n }\n });\n }\n public map<V>(iteratee: Iteratee<T, V>): SmartIterator<V, R>\n {\n const iterator = this._iterator;\n\n return new SmartIterator<V, R>(function* ()\n {\n let index = 0;\n\n while (true)\n {\n const result = iterator.next();\n if (result.done) { return result.value; }\n\n yield iteratee(result.value, index);\n\n index += 1;\n }\n });\n }\n public reduce(reducer: Reducer<T, T>): T;\n public reduce<A>(reducer: Reducer<T, A>, initialValue: A): A;\n public reduce<A>(reducer: Reducer<T, A>, initialValue?: A): A\n {\n let index = 0;\n let accumulator = initialValue;\n if (accumulator === undefined)\n {\n const result = this._iterator.next();\n if (result.done) { throw new TypeError(\"Reduce of empty iterator with no initial value\"); }\n\n accumulator = (result.value as unknown) as A;\n index += 1;\n }\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n if (result.done) { return accumulator; }\n\n accumulator = reducer(accumulator, result.value, index);\n\n index += 1;\n }\n }\n\n public enumerate(): SmartIterator<[number, T], R>\n {\n return this.map((value, index) => [index, value]);\n }\n public unique(): SmartIterator<T, R>\n {\n const iterator = this._iterator;\n\n return new SmartIterator<T, R>(function* ()\n {\n const values = new Set<T>();\n\n while (true)\n {\n const result = iterator.next();\n\n if (result.done) { return result.value; }\n if (values.has(result.value)) { continue; }\n\n values.add(result.value);\n\n yield result.value;\n }\n });\n }\n\n public count(): number\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n if (result.done) { return index; }\n\n index += 1;\n }\n }\n public forEach(iteratee: Iteratee<T>): void\n {\n let index = 0;\n\n // eslint-disable-next-line no-constant-condition\n while (true)\n {\n const result = this._iterator.next();\n if (result.done) { return; }\n\n iteratee(result.value, index);\n\n index += 1;\n }\n }\n\n public next(...values: N extends undefined ? [] : [N]): IteratorResult<T, R>\n {\n return this._iterator.next(...values);\n }\n\n public toArray(): T[]\n {\n return Array.from(this as Iterable<T>);\n }\n\n public [Symbol.iterator](): SmartIterator<T, R, N> { return this; }\n}\n","import SmartIterator from \"../smart-iterator.js\";\n\nimport type { KeyIteratee } from \"./types.js\";\nimport type { GeneratorFunction } from \"../../types.js\";\n\nexport default class ReducedIterator<K extends PropertyKey, T>\n{\n protected _elements: SmartIterator<[K, T]>;\n\n public constructor(iterable: Iterable<[K, T]>);\n public constructor(iterator: Iterator<[K, T]>);\n public constructor(generatorFn: GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>)\n {\n this._elements = new SmartIterator(argument);\n }\n\n public filter(predicate: KeyIteratee<K, T, boolean>): ReducedIterator<K, T>\n {\n const elements = this._elements;\n\n return new ReducedIterator(function* ()\n {\n for (const [index, [key, element]] of elements.enumerate())\n {\n if (predicate(key, element, index))\n {\n yield [key, element];\n }\n }\n });\n }\n public map<V>(iteratee: KeyIteratee<K, T, V>): ReducedIterator<K, V>\n {\n const elements = this._elements;\n\n return new ReducedIterator(function* ()\n {\n for (const [index, [key, element]] of elements.enumerate())\n {\n yield [key, iteratee(key, element, index)];\n }\n });\n }\n\n public toArray(): T[]\n {\n return Array.from(this.toMap().values());\n }\n public toMap(): Map<K, T>\n {\n return new Map(this._elements.toArray());\n }\n public toObject(): Record<K, T>\n {\n return Object.fromEntries(this._elements.toArray()) as Record<K, T>;\n }\n}\n","import ReducedIterator from \"./reduced-iterator.js\";\nimport SmartIterator from \"../smart-iterator.js\";\n\nimport type { KeyIteratee, KeyReducer } from \"./types.js\";\nimport type { GeneratorFunction } from \"../../types.js\";\n\nexport default class AggregatedIterator<K extends PropertyKey, T>\n{\n protected _elements: SmartIterator<[K, T]>;\n\n public constructor(iterable: Iterable<[K, T]>);\n public constructor(iterator: Iterator<[K, T]>);\n public constructor(generatorFn: GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>);\n public constructor(argument: Iterable<[K, T]> | Iterator<[K, T]> | GeneratorFunction<[K, T]>)\n {\n this._elements = new SmartIterator(argument);\n }\n\n public every(predicate: KeyIteratee<K, T, boolean>): ReducedIterator<K, boolean>\n {\n const indexes = new Map<K, [number, boolean]>();\n\n for (const [key, element] of this._elements)\n {\n const [index, result] = indexes.get(key) ?? [0, true];\n\n if (!(result)) { continue; }\n\n indexes.set(key, [index + 1, predicate(key, element, index)]);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, [_, result]] of indexes)\n {\n yield [key, result];\n }\n });\n }\n public some(predicate: KeyIteratee<K, T, boolean>): ReducedIterator<K, boolean>\n {\n const indexes = new Map<K, [number, boolean]>();\n\n for (const [key, element] of this._elements)\n {\n const [index, result] = indexes.get(key) ?? [0, false];\n\n if (result) { continue; }\n\n indexes.set(key, [index + 1, predicate(key, element, index)]);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, [_, result]] of indexes)\n {\n yield [key, result];\n }\n });\n }\n\n public filter(predicate: KeyIteratee<K, T, boolean>): AggregatedIterator<K, T>\n {\n const elements = this._elements;\n\n return new AggregatedIterator(function* ()\n {\n const indexes = new Map<K, number>();\n\n for (const [key, element] of elements)\n {\n const index = indexes.get(key) ?? 0;\n\n indexes.set(key, index + 1);\n\n if (predicate(key, element, index)) { yield [key, element]; }\n }\n });\n }\n public map<V>(iteratee: KeyIteratee<K, T, V>): AggregatedIterator<K, V>\n {\n const elements = this._elements;\n\n return new AggregatedIterator(function* ()\n {\n const indexes = new Map<K, number>();\n\n for (const [key, element] of elements)\n {\n const index = indexes.get(key) ?? 0;\n\n indexes.set(key, index + 1);\n\n yield [key, iteratee(key, element, index)];\n }\n });\n }\n public reduce(reducer: KeyReducer<K, T, T>): ReducedIterator<K, T>;\n public reduce<A>(reducer: KeyReducer<K, T, A>, initialValue: (key: K) => A): ReducedIterator<K, A>;\n public reduce<A>(reducer: KeyReducer<K, T, A>, initialValue?: (key: K) => A): ReducedIterator<K, A>\n {\n const accumulators = new Map<K, [number, A]>();\n\n for (const [key, element] of this._elements)\n {\n let index: number;\n let accumulator: A;\n\n if (accumulators.has(key))\n {\n [index, accumulator] = accumulators.get(key)!;\n\n index += 1;\n }\n else if (initialValue !== undefined)\n {\n index = 0;\n accumulator = initialValue(key);\n }\n else\n {\n accumulators.set(key, [0, (element as unknown) as A]);\n\n continue;\n }\n\n accumulator = reducer(key, accumulator, element, index);\n\n accumulators.set(key, [index, accumulator]);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, [_, accumulator]] of accumulators)\n {\n yield [key, accumulator];\n }\n });\n }\n\n public unique(): AggregatedIterator<K, T>\n {\n const elements = this._elements;\n\n return new AggregatedIterator(function* ()\n {\n const keys = new Map<K, Set<T>>();\n\n for (const [key, element] of elements)\n {\n const values = keys.get(key) ?? new Set<T>();\n\n if (values.has(element)) { continue; }\n\n values.add(element);\n keys.set(key, values);\n\n yield [key, element];\n }\n });\n }\n\n public count(): ReducedIterator<K, number>\n {\n const counters = new Map<K, number>();\n\n for (const [key] of this._elements)\n {\n const count = counters.get(key) ?? 0;\n\n counters.set(key, count + 1);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, count] of counters)\n {\n yield [key, count];\n }\n });\n }\n public first(): ReducedIterator<K, T>\n {\n const firsts = new Map<K, T>();\n\n for (const [key, element] of this._elements)\n {\n if (firsts.has(key)) { continue; }\n\n firsts.set(key, element);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, element] of firsts)\n {\n yield [key, element];\n }\n });\n }\n public last(): ReducedIterator<K, T>\n {\n const lasts = new Map<K, T>();\n\n for (const [key, element] of this._elements)\n {\n lasts.set(key, element);\n }\n\n return new ReducedIterator(function* ()\n {\n for (const [key, element] of lasts)\n {\n yield [key, element];\n }\n });\n }\n\n public toArray(): T[][]\n {\n return Array.from(this.toMap().values());\n }\n public toMap(): Map<K, T[]>\n {\n const groups = new Map<K, T[]>();\n\n for (const [key, element] of this._elements)\n {\n const value = groups.get(key) ?? [];\n\n value.push(element);\n groups.set(key, value);\n }\n\n return groups;\n }\n public toObject(): Record<K, T[]>\n {\n const groups = { } as Record<K, T[]>;\n\n for (const [key, element] of this._elements)\n {\n const value = groups[key] ?? [];\n\n value.push(element);\n groups[key] = value;\n }\n\n return groups;\n }\n}\n","import AggregatedIterator from \"./aggregated-iterator.js\";\nimport ReducedIterator from \"./reduced-iterator.js\";\nimport SmartIterator from \"../smart-iterator.js\";\n\nimport type { GeneratorFunction, Iteratee } from \"../../types.js\";\n\nexport default class Aggregator<T>\n{\n protected _elements: SmartIterator<T>;\n\n public constructor(iterable: Iterable<T>);\n public constructor(iterator: Iterator<T>);\n public constructor(generatorFn: GeneratorFunction<T>);\n public constructor(argument: Iterable<T> | Iterator<T> | GeneratorFunction<T>);\n public constructor(argument: Iterable<T> | Iterator<T> | GeneratorFunction<T>)\n {\n this._elements = new SmartIterator(argument);\n }\n\n public filter(predicate: Iteratee<T, boolean>): Aggregator<T>\n {\n return new Aggregator(this._elements.filter(predicate));\n }\n public map<V>(iteratee: Iteratee<T, V>): Aggregator<V>\n {\n return new Aggregator(this._elements.map(iteratee));\n }\n\n public unique(): Aggregator<T>\n {\n return new Aggregator(this._elements.unique());\n }\n\n public byKey<K extends PropertyKey>(iteratee: Iteratee<T, K>): AggregatedIterator<K, T>\n {\n return new AggregatedIterator(this._elements.map((element, index) =>\n {\n const key = iteratee(element, index);\n\n return [key, element];\n }));\n }\n}\n\nexport { AggregatedIterator, ReducedIterator };\n","/* eslint-disable no-trailing-spaces */\n\n/**\n * A wrapper around the `Storage` API to store and retrieve JSON values.\n *\n * It allows to handle either the `sessionStorage` or the `localStorage`\n * storage at the same time, depending on the required use case.\n */\nexport default class JsonStorage\n{\n protected _preferPersistence: boolean;\n\n protected _volatile: Storage;\n protected _persistent: Storage;\n\n public constructor(preferPersistence = true)\n {\n this._preferPersistence = preferPersistence;\n\n this._volatile = window.sessionStorage;\n this._persistent = window.localStorage;\n }\n\n protected _get<T>(storage: Storage, propertyName: string): T | undefined;\n protected _get<T>(storage: Storage, propertyName: string, defaultValue: T): T;\n protected _get<T>(storage: Storage, propertyName: string, defaultValue?: T): T | undefined;\n protected _get<T>(storage: Storage, propertyName: string, defaultValue?: T): T | undefined\n {\n const propertyValue = storage.getItem(propertyName);\n if (propertyValue)\n {\n try\n {\n return JSON.parse(propertyValue);\n }\n catch (error)\n {\n // eslint-disable-next-line no-console\n console.warn(\n `The \"${propertyValue}\" value for \"${propertyName}\"` +\n \" property cannot be parsed. Clearing the storage...\");\n\n storage.removeItem(propertyName);\n }\n }\n\n return defaultValue;\n }\n protected _set<T>(storage: Storage, propertyName: string, newValue?: T): void\n {\n const encodedValue = JSON.stringify(newValue);\n if (encodedValue)\n {\n storage.setItem(propertyName, encodedValue);\n }\n else\n {\n storage.removeItem(propertyName);\n }\n }\n\n /**\n * Retrieves the value with the specified name from the corresponding storage.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n * @param persistent Whether to use the persistent `localStorage` or the volatile `sessionStorage`.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public get<T>(propertyName: string, defaultValue: undefined, persistent?: boolean): T | undefined;\n public get<T>(propertyName: string, defaultValue: T, persistent?: boolean): T ;\n public get<T>(propertyName: string, defaultValue?: T, persistent?: boolean): T | undefined;\n public get<T>(propertyName: string, defaultValue?: T, persistent = this._preferPersistence): T | undefined\n {\n const storage = persistent ? this._persistent : this._volatile;\n\n return this._get<T>(storage, propertyName, defaultValue);\n }\n /**\n * Retrieves the value with the specified name from the volatile `sessionStorage`.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public recall<T>(propertyName: string): T | undefined;\n public recall<T>(propertyName: string, defaultValue: T): T;\n public recall<T>(propertyName: string, defaultValue?: T): T | undefined;\n public recall<T>(propertyName: string, defaultValue?: T): T | undefined\n {\n return this._get<T>(this._volatile, propertyName, defaultValue);\n }\n /**\n * Retrieves the value with the specified name looking first in the\n * volatile `sessionStorage` and then in the persistent `localStorage`.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public retrieve<T>(propertyName: string): T | undefined;\n public retrieve<T>(propertyName: string, defaultValue: T): T;\n public retrieve<T>(propertyName: string, defaultValue?: T): T | undefined;\n public retrieve<T>(propertyName: string, defaultValue?: T): T | undefined\n {\n return this.recall<T>(propertyName) ?? this.read<T>(propertyName, defaultValue);\n }\n /**\n * Retrieves the value with the specified name from the persistent `localStorage`.\n *\n * @param propertyName The name of the property to retrieve.\n * @param defaultValue The default value to return if the property does not exist.\n *\n * @returns The value of the property or the default value if the property does not exist.\n */\n public read<T>(propertyName: string): T | undefined;\n public read<T>(propertyName: string, defaultValue: T): T;\n public read<T>(propertyName: string, defaultValue?: T): T | undefined;\n public read<T>(propertyName: string, defaultValue?: T): T | undefined\n {\n return this._get<T>(this._persistent, propertyName, defaultValue);\n }\n\n /**\n * Checks whether the property with the specified name exists in the corresponding storage.\n *\n * @param propertyName The name of the property to check.\n * @param persistent Whether to use the persistent `localStorage` or the volatile `sessionStorage`.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public has(propertyName: string, persistent?: boolean): boolean\n {\n const storage = persistent ? this._persistent : this._volatile;\n\n return storage.getItem(propertyName) !== null;\n }\n /**\n * Checks whether the property with the specified name exists in the volatile `sessionStorage`.\n *\n * @param propertyName The name of the property to check.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public knows(propertyName: string): boolean\n {\n return this._volatile.getItem(propertyName) !== null;\n }\n /**\n * Checks whether the property with the specified name exists looking first in the\n * volatile `sessionStorage` and then in the persistent `localStorage`.\n *\n * @param propertyName The name of the property to check.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public find(propertyName: string): boolean\n {\n return this.knows(propertyName) ?? this.exists(propertyName);\n }\n /**\n * Checks whether the property with the specified name exists in the persistent `localStorage`.\n *\n * @param propertyName The name of the property to check.\n *\n * @returns `true` if the property exists, `false` otherwise.\n */\n public exists(propertyName: string): boolean\n {\n return this._persistent.getItem(propertyName) !== null;\n }\n\n /**\n * Sets the value with the specified name in the corresponding storage.\n * If the value is `undefined`, the property is removed from the storage.\n *\n * @param propertyName The name of the property to set.\n * @param newValue The new value to set.\n * @param persistent Whether to use the persistent `localStorage` or the volatile `sessionStorage`.\n */\n public set<T>(propertyName: string, newValue?: T, persistent = this._preferPersistence): void\n {\n const storage = persistent ? this._persistent : this._volatile;\n\n this._set<T>(storage, propertyName, newValue);\n }\n /**\n * Sets the value with the specified name in the volatile `sessionStorage`.\n * If the value is `undefined`, the property is removed from the storage.\n *\n * @param propertyName The name of the property to set.\n * @param newValue The new value to set.\n */\n public remember<T>(propertyName: string, newValue?: T): void\n {\n this._set<T>(this._volatile, propertyName, newValue);\n }\n /**\n * Sets the value with the specified name in the persistent `localStorage`.\n * If the value is `undefined`, the property is removed from the storage.\n *\n * @param propertyName The name of the property to set.\n * @param newValue The new value to set.\n */\n public write<T>(propertyName: string, newValue?: T): void\n {\n this._set<T>(this._persistent, propertyName, newValue);\n }\n\n /**\n * Removes the value with the specified name from the volatile `sessionStorage`.\n *\n * @param propertyName The name of the property to remove.\n */\n public forget(propertyName: string): void\n {\n this._volatile.removeItem(propertyName);\n }\n /**\n * Removes the value with the specified name from the persistent `localStorage`.\n *\n * @param propertyName The name of the property to remove.\n */\n public erase(propertyName: string): void\n {\n this._persistent.removeItem(propertyName);\n }\n /**\n * Removes the value with the specified name from all the storages.\n *\n * @param propertyName The name of the property to remove.\n */\n public clear(propertyName: string): void\n {\n this._volatile.removeItem(propertyName);\n this._persistent.removeItem(propertyName);\n }\n}\n","import Exception from \"./exception.js\";\n\nexport default class Subscribers<P extends unknown[] = [], R = void, T extends (...args: P) => R = (...args: P) => R>\n{\n protected _subscribers: T[];\n\n public constructor()\n {\n this._subscribers = [];\n }\n\n public add(subscriber: T): void\n {\n this._subscribers.push(subscriber);\n }\n public remove(subscriber: T): void\n {\n const index = this._subscribers.indexOf(subscriber);\n if (index < 0)\n {\n throw new Exception(\"Unable to remove the requested subscriber. It was not found.\");\n }\n\n this._subscribers.splice(index, 1);\n }\n\n public call(...args: P): R[]\n {\n return this._subscribers\n .slice()\n .map((subscriber) => subscriber(...args));\n }\n}\n","import type {\n PromiseResolver,\n PromiseRejecter,\n FulfilledHandler,\n RejectedHandler,\n PromiseExecutor\n\n} from \"../../types.js\";\n\nexport default class DeferredPromise<T = void, E = unknown, F = T, R = never>\n{\n protected _isPending: boolean;\n protected _isFulfilled: boolean;\n protected _isRejected: boolean;\n\n protected _resolve!: PromiseResolver<T>;\n protected _reject!: PromiseRejecter<E>;\n\n protected _promise: Promise<F | R>;\n\n public constructor(onFulfilled?: FulfilledHandler<T, F> | null, onRejected?: RejectedHandler<E, R> | null)\n {\n this._isPending = true;\n this._isFulfilled = false;\n this._isRejected = false;\n\n let _resolve: PromiseResolver<T>;\n let _reject: PromiseRejecter<E>;\n\n const executor: PromiseExecutor<T, E> = (resolve, reject) =>\n {\n _resolve = resolve;\n _reject = reject;\n };\n\n let _onFulfilled: FulfilledHandler<T, F>;\n if (onFulfilled)\n {\n _onFulfilled = (value) =>\n {\n this._isPending = false;\n this._isFulfilled = true;\n\n return onFulfilled!(value);\n };\n }\n else\n {\n _onFulfilled = (value) =>\n {\n this._isPending = false;\n this._isFulfilled = true;\n\n return (value as unknown) as F;\n };\n }\n\n let _onRejected: RejectedHandler<E, R>;\n if (onRejected)\n {\n _onRejected = (reason) =>\n {\n this._isPending = false;\n this._isRejected = true;\n\n return onRejected!(reason);\n };\n }\n else\n {\n _onRejected = (reason) =>\n {\n this._isPending = false;\n this._isRejected = true;\n\n return (reason as unknown) as R;\n };\n }\n\n this._promise = new Promise<T>(executor)\n .then(_onFulfilled, _onRejected);\n\n this._resolve = _resolve!;\n this._reject = _reject!;\n }\n\n public get isPending(): boolean { return this._isPending; }\n public get isFulfilled(): boolean { return this._isFulfilled; }\n public get isRejected(): boolean { return this._isRejected; }\n\n public get resolve(): PromiseResolver<T> { return this._resolve; }\n public get reject(): PromiseRejecter<E> { return this._reject; }\n\n public then<N = F | R, H = R>(\n onFulfilled?: FulfilledHandler<F | R, N> | null,\n onRejected?: RejectedHandler<R, H> | null): Promise<N | H>\n {\n return this._promise.then(onFulfilled, onRejected);\n }\n public catch<H = R>(onRejected?: RejectedHandler<R, H> | null): Promise<F | R | H>\n {\n return this._promise.catch(onRejected);\n }\n public finally(onFinally?: (() => void) | null): Promise<F | R>\n {\n return this._promise.finally(onFinally);\n }\n\n public watch(promise: Promise<T>): this\n {\n promise.then(this.resolve, this.reject);\n\n return this;\n }\n\n public get [Symbol.toStringTag]() { return \"DeferredPromise\"; }\n}\n","import type { FulfilledHandler, PromiseExecutor, RejectedHandler } from \"../../types.js\";\n\nexport default class SmartPromise<T = void, E = unknown>\n{\n protected _isPending: boolean;\n protected _isFulfilled: boolean;\n protected _isRejected: boolean;\n\n protected _promise: Promise<T | E>;\n\n public constructor(executor: PromiseExecutor<T, E>)\n {\n this._isPending = true;\n this._isFulfilled = false;\n this._isRejected = false;\n\n const _resolve = (result: T): T =>\n {\n this._isPending = false;\n this._isFulfilled = true;\n\n return result;\n };\n const _reject = (reason: E): E =>\n {\n this._isPending = false;\n this._isRejected = true;\n\n return reason;\n };\n\n this._promise = new Promise<T>(executor)\n .then(_resolve, _reject);\n }\n\n public get isPending(): boolean { return this._isPending; }\n public get isFulfilled(): boolean { return this._isFulfilled; }\n public get isRejected(): boolean { return this._isRejected; }\n\n public then<F = T, R = E>(\n onFulfilled?: FulfilledHandler<T | E, F> | null,\n onRejected?: RejectedHandler<E, R> | null): Promise<F | R>\n {\n return this._promise.then(onFulfilled, onRejected);\n }\n public catch<R = E>(onRejected?: RejectedHandler<E, R> | null): Promise<T | E | R>\n {\n return this._promise.catch(onRejected);\n }\n public finally(onFinally?: (() => void) | null): Promise<T | E>\n {\n return this._promise.finally(onFinally);\n }\n\n public get [Symbol.toStringTag]() { return \"SmartPromise\"; }\n}\n","export default class Random\n{\n public static Boolean(ratio: number = 0.5): boolean\n {\n return (Math.random() < ratio);\n }\n\n public static Integer(max: number): number;\n public static Integer(min: number, max: number): number;\n public static Integer(min: number, max?: number): number\n {\n if (max === undefined)\n {\n return Math.floor(Math.random() * min);\n }\n\n return Math.floor(Math.random() * (max - min) + min);\n }\n\n public static Decimal(max: number): number;\n public static Decimal(min: number, max: number): number;\n public static Decimal(min: number, max?: number): number\n {\n if (max === undefined)\n {\n return (Math.random() * min);\n }\n\n return (Math.random() * (max - min) + min);\n }\n\n public static Choice<T>(elements: T[]): T\n {\n return elements[this.Integer(elements.length)];\n }\n\n // eslint-disable-next-line no-useless-constructor\n private constructor() { }\n}\n","export async function delay(milliseconds: number): Promise<void>\n{\n return new Promise<void>((resolve, reject) => setTimeout(resolve, milliseconds));\n}\n\nexport async function nextAnimationFrame(): Promise<void>\n{\n return new Promise<void>((resolve, reject) => requestAnimationFrame(() => resolve()));\n}\n","import { SmartIterator } from \"../models/index.js\";\n\nexport enum DateUnit\n{\n Second = 1000,\n Minute = 60 * Second,\n Hour = 60 * Minute,\n Day = 24 * Hour,\n Week = 7 * Day,\n Month = 30 * Day,\n Year = 365 * Day\n}\n\nexport function dateDifference(start: Date, end: Date, unit = DateUnit.Day): number\n{\n return Math.floor((end.getTime() - start.getTime()) / unit);\n}\n\nexport function dateRange(start: Date, end: Date, offset = DateUnit.Day): SmartIterator<Date>\n{\n return new SmartIterator<Date>(function* ()\n {\n const endTime = end.getTime();\n\n let unixTime: number = start.getTime();\n while (unixTime < endTime)\n {\n yield new Date(unixTime);\n\n unixTime += offset;\n }\n });\n}\n\nexport function dateRound(date: Date, unit = DateUnit.Day): Date\n{\n return new Date(Math.floor(date.getTime() / unit) * unit);\n}\n","export async function loadScript(scriptUrl: string, scriptType = \"text/javascript\"): Promise<void>\n{\n return new Promise<void>((resolve, reject) =>\n {\n const script = document.createElement(\"script\");\n\n script.async = true;\n script.defer = true;\n script.src = scriptUrl;\n script.type = scriptType;\n\n script.onload = () => resolve();\n script.onerror = () => reject();\n\n document.body.appendChild(script);\n });\n}\n","import { SmartIterator } from \"../models/index.js\";\n\nexport function count<T>(elements: Iterable<T>): number\n{\n if (Array.isArray(elements)) { return elements.length; }\n\n let _count = 0;\n for (const _ of elements) { _count += 1; }\n\n return _count;\n}\n\nexport function enumerate<T>(elements: Iterable<T>): SmartIterator<[number, T]>\n{\n return new SmartIterator<[number, T]>(function* ()\n {\n let index = 0;\n\n for (const element of elements)\n {\n yield [index, element];\n\n index += 1;\n }\n });\n}\n\nexport function range(end: number): SmartIterator<number>;\nexport function range(start: number, end: number): SmartIterator<number>;\nexport function range(start: number, end: number, step: number): SmartIterator<number>;\nexport function range(start: number, end?: number, step = 1): SmartIterator<number>\n{\n return new SmartIterator<number>(function* ()\n {\n if (end === undefined)\n {\n end = start;\n start = 0;\n }\n\n if (start > end) { step = step ?? -1; }\n\n for (let index = start; index < end; index += step) { yield index; }\n });\n}\n\nexport function shuffle<T>(iterable: Iterable<T>): T[]\n{\n const array = Array.from(iterable);\n\n for (let index = array.length - 1; index > 0; index -= 1)\n {\n const jndex = Math.floor(Math.random() * (index + 1));\n\n [array[index], array[jndex]] = [array[jndex], array[index]];\n }\n\n return array;\n}\n\nexport function unique<T>(elements: Iterable<T>): SmartIterator<T>\n{\n return new SmartIterator<T>(function* ()\n {\n const values = new Set<T>();\n\n for (const element of elements)\n {\n if (values.has(element)) { continue; }\n\n values.add(element);\n\n yield element;\n }\n });\n}\n\nexport function zip<T, U>(first: Iterable<T>, second: Iterable<U>): SmartIterator<[T, U]>\n{\n return new SmartIterator<[T, U]>(function* ()\n {\n const firstIterator = first[Symbol.iterator]();\n const secondIterator = second[Symbol.iterator]();\n\n while (true)\n {\n const firstResult = firstIterator.next();\n const secondResult = secondIterator.next();\n\n if ((firstResult.done) || (secondResult.done)) { break; }\n\n yield [firstResult.value, secondResult.value];\n }\n });\n}\n","import { zip } from \"./iterator.js\";\n\nexport function average<T extends number>(values: Iterable<T>): number;\nexport function average<T extends number>(values: Iterable<T>, weights: Iterable<number>): number;\nexport function average<T extends number>(values: Iterable<T>, weights?: Iterable<number>): number\n{\n if (weights === undefined)\n {\n let _sum = 0;\n let _count = 0;\n\n for (const value of values)\n {\n _sum += value;\n _count += 1;\n }\n\n return _sum / _count;\n }\n\n let _sum = 0;\n let _count = 0;\n\n for (const [value, weight] of zip(values, weights))\n {\n _sum += value * weight;\n _count += weight;\n }\n\n return _sum / _count;\n}\n\nexport function hash(value: string): number\n{\n let hashedValue = 0;\n for (let index = 0; index < value.length; index += 1)\n {\n const char = value.charCodeAt(index);\n\n hashedValue = ((hashedValue << 5) - hashedValue) + char;\n hashedValue |= 0;\n }\n\n return hashedValue;\n}\n\nexport function sum<T extends number>(values: Iterable<T>): number\n{\n let _sum = 0;\n for (const value of values) { _sum += value; }\n\n return _sum;\n}\n","export function capitalize(value: string): string\n{\n return `${value.charAt(0).toUpperCase()}${value.slice(1)}`;\n}\n","export const VERSION = \"1.3.4\";\n\nexport {\n AggregatedIterator,\n Aggregator,\n DeferredPromise,\n Exception,\n JsonStorage,\n ReducedIterator,\n SmartIterator,\n SmartPromise,\n Subscribers\n\n} from \"./models/index.js\";\n\nexport {\n average,\n capitalize,\n count,\n delay,\n dateDifference,\n dateRange,\n dateRound,\n DateUnit,\n hash,\n loadScript,\n nextAnimationFrame,\n Random,\n range,\n shuffle,\n sum,\n unique,\n zip\n\n} from \"./utils/index.js\";\n\nexport type {\n Constructor,\n FulfilledHandler,\n GeneratorFunction,\n Interval,\n Iteratee,\n MaybePromise,\n PromiseExecutor,\n PromiseRejecter,\n PromiseResolver,\n Reducer,\n RejectedHandler,\n Timeout\n\n} from \"./types.js\";\n"],"names":["Exception","error","exc","message","cause","name","SmartIterator","argument","__publicField","value","predicate","index","result","iterator","iteratee","reducer","initialValue","accumulator","values","ReducedIterator","elements","key","element","AggregatedIterator","indexes","_","accumulators","keys","counters","count","firsts","lasts","groups","Aggregator","JsonStorage","preferPersistence","storage","propertyName","defaultValue","propertyValue","newValue","encodedValue","persistent","Subscribers","subscriber","args","DeferredPromise","onFulfilled","onRejected","_resolve","_reject","executor","resolve","reject","_onFulfilled","_onRejected","reason","onFinally","promise","SmartPromise","Random","ratio","min","max","delay","milliseconds","nextAnimationFrame","DateUnit","dateDifference","start","end","unit","dateRange","offset","endTime","unixTime","dateRound","date","loadScript","scriptUrl","scriptType","script","_count","range","step","shuffle","iterable","array","jndex","unique","zip","first","second","firstIterator","secondIterator","firstResult","secondResult","average","weights","_sum","weight","hash","hashedValue","char","sum","capitalize","VERSION"],"mappings":"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"}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -96,7 +96,9 @@ export default class AggregatedIterator<K extends PropertyKey, T>
|
|
|
96
96
|
}
|
|
97
97
|
});
|
|
98
98
|
}
|
|
99
|
-
public reduce
|
|
99
|
+
public reduce(reducer: KeyReducer<K, T, T>): ReducedIterator<K, T>;
|
|
100
|
+
public reduce<A>(reducer: KeyReducer<K, T, A>, initialValue: (key: K) => A): ReducedIterator<K, A>;
|
|
101
|
+
public reduce<A>(reducer: KeyReducer<K, T, A>, initialValue?: (key: K) => A): ReducedIterator<K, A>
|
|
100
102
|
{
|
|
101
103
|
const accumulators = new Map<K, [number, A]>();
|
|
102
104
|
|
|
@@ -114,7 +116,7 @@ export default class AggregatedIterator<K extends PropertyKey, T>
|
|
|
114
116
|
else if (initialValue !== undefined)
|
|
115
117
|
{
|
|
116
118
|
index = 0;
|
|
117
|
-
accumulator = initialValue;
|
|
119
|
+
accumulator = initialValue(key);
|
|
118
120
|
}
|
|
119
121
|
else
|
|
120
122
|
{
|
|
@@ -99,6 +99,8 @@ export default class SmartIterator<T, R = void, N = undefined> implements Iterat
|
|
|
99
99
|
}
|
|
100
100
|
});
|
|
101
101
|
}
|
|
102
|
+
public reduce(reducer: Reducer<T, T>): T;
|
|
103
|
+
public reduce<A>(reducer: Reducer<T, A>, initialValue: A): A;
|
|
102
104
|
public reduce<A>(reducer: Reducer<T, A>, initialValue?: A): A
|
|
103
105
|
{
|
|
104
106
|
let index = 0;
|