@tutao/tutanota-utils 3.120.6 → 3.121.0
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/ArrayUtils.d.ts +14 -25
- package/dist/ArrayUtils.js +15 -26
- package/dist/DateUtils.d.ts +1 -0
- package/dist/DateUtils.js +1 -0
- package/dist/LazyLoaded.d.ts +5 -5
- package/dist/LazyLoaded.js +32 -32
- package/dist/Tokenizer.d.ts +5 -0
- package/dist/Tokenizer.js +73 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/ArrayUtils.d.ts
CHANGED
|
@@ -86,13 +86,6 @@ export declare function groupByAndMapUniquely<T, R, E>(iterable: Iterable<T>, di
|
|
|
86
86
|
* @returns {Map<R, Array<E>>}
|
|
87
87
|
*/
|
|
88
88
|
export declare function groupByAndMap<T, R, E>(iterable: Iterable<T>, discriminator: (arg0: T) => R, mapper: (arg0: T) => E): Map<R, Array<E>>;
|
|
89
|
-
/**
|
|
90
|
-
* convert a map from one value type to another by applying a mapper function to each value.
|
|
91
|
-
* keeps the keys as-is.
|
|
92
|
-
* @param map the map to map the entries of
|
|
93
|
-
* @param mapper the function that maps the entries to the new type
|
|
94
|
-
*/
|
|
95
|
-
export declare function mapMapAsync<K, I, O>(map: ReadonlyMap<K, I>, mapper: (key: K, val: I) => Promise<O>): Promise<Map<K, O>>;
|
|
96
89
|
/**
|
|
97
90
|
* Group array elements based on keys produced by a discriminator
|
|
98
91
|
* @param iterable the array to split into groups
|
|
@@ -153,36 +146,33 @@ export declare function union<T>(...iterables: Array<Iterable<T>>): Set<T>;
|
|
|
153
146
|
* @template T
|
|
154
147
|
* @param array1
|
|
155
148
|
* @param array2
|
|
156
|
-
* @param compare: compare items in the array for equality
|
|
149
|
+
* @param compare {(l: T, r: T) => boolean} compare items in the array for equality
|
|
157
150
|
* @returns {Array<T>}
|
|
158
151
|
*/
|
|
159
|
-
export declare function difference<T>(array1: ReadonlyArray<T>, array2: ReadonlyArray<T>, compare?: (
|
|
152
|
+
export declare function difference<T>(array1: ReadonlyArray<T>, array2: ReadonlyArray<T>, compare?: (l: T, r: T) => boolean): Array<T>;
|
|
160
153
|
/**
|
|
161
154
|
* Returns a set with elements that are *not* in both sets.
|
|
162
155
|
*
|
|
163
156
|
* {a, b, c} △ {b, c, d} == {a, d}
|
|
164
157
|
*/
|
|
165
158
|
export declare function symmetricDifference<T>(set1: ReadonlySet<T>, set2: ReadonlySet<T>): Set<T>;
|
|
166
|
-
/**
|
|
167
|
-
* type that is Then when T and U are mutually assignable and Else otherwise.
|
|
168
|
-
* in some cases, this still fails (for example if T and/or U are intersections of function types)
|
|
169
|
-
* https://github.com/Microsoft/TypeScript/issues/27024#issuecomment-421529650
|
|
170
|
-
*/
|
|
171
|
-
type IfEquals<T, U, Then, Else> = (<G>() => G extends T ? 1 : 2) extends <G>() => G extends U ? 1 : 2 ? Then : Else;
|
|
172
159
|
/**
|
|
173
160
|
* Splits an array into two based on a predicate, where elements that match the predicate go into the left side.
|
|
174
|
-
*
|
|
175
|
-
*
|
|
176
|
-
*
|
|
161
|
+
*
|
|
162
|
+
* This exists in two overloads:
|
|
163
|
+
* - one that requires a type guard. Specifically, if an item is A | B and type guard is "item is A" it returns [Array<A>, Array<B>]
|
|
164
|
+
* - one that takes a plain predicate and returns two arrays of the same type, without type narrowing
|
|
165
|
+
*
|
|
166
|
+
* Please note that tsc cannot infer that a function is a type predicate/type guard. Declaring function as a type predicate is also unsafe.
|
|
167
|
+
* see: https://github.com/microsoft/TypeScript/issues/16069
|
|
177
168
|
*/
|
|
178
|
-
export declare function partition<
|
|
169
|
+
export declare function partition<Generic, Specific extends Generic>(array: ReadonlyArray<Generic>, predicate: (item: Generic) => item is Specific): [Array<Specific>, Array<Exclude<Generic, Specific>>];
|
|
170
|
+
export declare function partition<TL>(array: ReadonlyArray<TL>, predicate: (item: TL) => boolean): [Array<TL>, Array<TL>];
|
|
179
171
|
/**
|
|
180
|
-
*
|
|
181
|
-
*
|
|
182
|
-
* @param array
|
|
183
|
-
* @param predicate
|
|
172
|
+
* Like {@link partition}, but async and only for TL = TR.
|
|
173
|
+
* Rejects if any of the predicates reject.
|
|
184
174
|
*/
|
|
185
|
-
export declare function partitionAsync<T>(array: Array<T>, predicate: (
|
|
175
|
+
export declare function partitionAsync<T>(array: Array<T>, predicate: (item: T) => Promise<boolean>): Promise<[Array<T>, Array<T>]>;
|
|
186
176
|
/**
|
|
187
177
|
* Create an array with n elements by calling the provided factory
|
|
188
178
|
*/
|
|
@@ -191,4 +181,3 @@ export declare function arrayOf<T>(n: number, factory: (idx: number) => T): Arra
|
|
|
191
181
|
* Destroy contents of the byte arrays passed. Useful for purging unwanted memory.
|
|
192
182
|
*/
|
|
193
183
|
export declare function zeroOut(...arrays: (Uint8Array | Int8Array)[]): void;
|
|
194
|
-
export {};
|
package/dist/ArrayUtils.js
CHANGED
|
@@ -240,18 +240,6 @@ export function groupByAndMap(iterable, discriminator, mapper) {
|
|
|
240
240
|
}
|
|
241
241
|
return map;
|
|
242
242
|
}
|
|
243
|
-
/**
|
|
244
|
-
* convert a map from one value type to another by applying a mapper function to each value.
|
|
245
|
-
* keeps the keys as-is.
|
|
246
|
-
* @param map the map to map the entries of
|
|
247
|
-
* @param mapper the function that maps the entries to the new type
|
|
248
|
-
*/
|
|
249
|
-
export async function mapMapAsync(map, mapper) {
|
|
250
|
-
const entries = Array.from(map.entries());
|
|
251
|
-
const newEntryPromises = entries.map(async ([k, v]) => [k, await mapper(k, v)]);
|
|
252
|
-
const newEntries = await Promise.all(newEntryPromises);
|
|
253
|
-
return new Map(newEntries);
|
|
254
|
-
}
|
|
255
243
|
/**
|
|
256
244
|
* Group array elements based on keys produced by a discriminator
|
|
257
245
|
* @param iterable the array to split into groups
|
|
@@ -400,7 +388,7 @@ export function union(...iterables) {
|
|
|
400
388
|
* @template T
|
|
401
389
|
* @param array1
|
|
402
390
|
* @param array2
|
|
403
|
-
* @param compare: compare items in the array for equality
|
|
391
|
+
* @param compare {(l: T, r: T) => boolean} compare items in the array for equality
|
|
404
392
|
* @returns {Array<T>}
|
|
405
393
|
*/
|
|
406
394
|
export function difference(array1, array2, compare = (a, b) => a === b) {
|
|
@@ -425,12 +413,7 @@ export function symmetricDifference(set1, set2) {
|
|
|
425
413
|
}
|
|
426
414
|
return diff;
|
|
427
415
|
}
|
|
428
|
-
|
|
429
|
-
* Splits an array into two based on a predicate, where elements that match the predicate go into the left side.
|
|
430
|
-
* also acts as a type guard if TL and TR are not equal in the sense of IfEquals
|
|
431
|
-
* @param array
|
|
432
|
-
* @param predicate
|
|
433
|
-
*/
|
|
416
|
+
// this is an implementation signature and is not visible from the outside
|
|
434
417
|
export function partition(array, predicate) {
|
|
435
418
|
const left = [];
|
|
436
419
|
const right = [];
|
|
@@ -445,15 +428,21 @@ export function partition(array, predicate) {
|
|
|
445
428
|
return [left, right];
|
|
446
429
|
}
|
|
447
430
|
/**
|
|
448
|
-
*
|
|
449
|
-
*
|
|
450
|
-
* @param array
|
|
451
|
-
* @param predicate
|
|
431
|
+
* Like {@link partition}, but async and only for TL = TR.
|
|
432
|
+
* Rejects if any of the predicates reject.
|
|
452
433
|
*/
|
|
453
434
|
export async function partitionAsync(array, predicate) {
|
|
454
|
-
const
|
|
455
|
-
const
|
|
456
|
-
|
|
435
|
+
const left = [];
|
|
436
|
+
const right = [];
|
|
437
|
+
for (let item of array) {
|
|
438
|
+
if (await predicate(item)) {
|
|
439
|
+
left.push(item);
|
|
440
|
+
}
|
|
441
|
+
else {
|
|
442
|
+
right.push(item);
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
return [left, right];
|
|
457
446
|
}
|
|
458
447
|
/**
|
|
459
448
|
* Create an array with n elements by calling the provided factory
|
package/dist/DateUtils.d.ts
CHANGED
package/dist/DateUtils.js
CHANGED
package/dist/LazyLoaded.d.ts
CHANGED
|
@@ -4,17 +4,17 @@ import type { lazyAsync } from "./Utils.js";
|
|
|
4
4
|
* If the object was loaded once it is not loaded again.
|
|
5
5
|
*/
|
|
6
6
|
export declare class LazyLoaded<T> {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
_loadFunction: lazyAsync<T>;
|
|
7
|
+
private readonly loadFunction;
|
|
8
|
+
private defaultValue;
|
|
9
|
+
private state;
|
|
11
10
|
/**
|
|
12
11
|
* @param loadFunction The function that actually loads the object as soon as getAsync() is called the first time.
|
|
13
12
|
* @param defaultValue The value that shall be returned by getSync() or getLoaded() as long as the object is not loaded yet.
|
|
14
13
|
*/
|
|
15
|
-
constructor(loadFunction: lazyAsync<T>, defaultValue?: T);
|
|
14
|
+
constructor(loadFunction: lazyAsync<T>, defaultValue?: T | null);
|
|
16
15
|
load(): this;
|
|
17
16
|
isLoaded(): boolean;
|
|
17
|
+
isLoadedOrLoading(): boolean;
|
|
18
18
|
/**
|
|
19
19
|
* Loads the object if it is not loaded yet. May be called in parallel and takes care that the load function is only called once.
|
|
20
20
|
*/
|
package/dist/LazyLoaded.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { neverNull } from "./Utils.js";
|
|
2
1
|
/**
|
|
3
2
|
* A wrapper for an object that shall be lazy loaded asynchronously. If loading the object is triggered in parallel (getAsync()) the object is actually only loaded once but returned to all calls of getAsync().
|
|
4
3
|
* If the object was loaded once it is not loaded again.
|
|
@@ -8,70 +7,71 @@ export class LazyLoaded {
|
|
|
8
7
|
* @param loadFunction The function that actually loads the object as soon as getAsync() is called the first time.
|
|
9
8
|
* @param defaultValue The value that shall be returned by getSync() or getLoaded() as long as the object is not loaded yet.
|
|
10
9
|
*/
|
|
11
|
-
constructor(loadFunction, defaultValue) {
|
|
12
|
-
this.
|
|
13
|
-
this.
|
|
14
|
-
this.
|
|
15
|
-
this._loadedObject = defaultValue ?? null;
|
|
10
|
+
constructor(loadFunction, defaultValue = null) {
|
|
11
|
+
this.loadFunction = loadFunction;
|
|
12
|
+
this.defaultValue = defaultValue;
|
|
13
|
+
this.state = { state: "not_loaded" };
|
|
16
14
|
}
|
|
17
15
|
load() {
|
|
18
16
|
this.getAsync();
|
|
19
17
|
return this;
|
|
20
18
|
}
|
|
21
19
|
isLoaded() {
|
|
22
|
-
return this.
|
|
20
|
+
return this.state.state === "loaded";
|
|
21
|
+
}
|
|
22
|
+
isLoadedOrLoading() {
|
|
23
|
+
return this.state.state === "loaded" || this.state.state === "loading";
|
|
23
24
|
}
|
|
24
25
|
/**
|
|
25
26
|
* Loads the object if it is not loaded yet. May be called in parallel and takes care that the load function is only called once.
|
|
26
27
|
*/
|
|
27
28
|
getAsync() {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
.
|
|
35
|
-
this._loadingPromise = null;
|
|
29
|
+
switch (this.state.state) {
|
|
30
|
+
case "not_loaded":
|
|
31
|
+
const loadingPromise = this.loadFunction().then((value) => {
|
|
32
|
+
this.state = { state: "loaded", value };
|
|
33
|
+
return value;
|
|
34
|
+
}, (e) => {
|
|
35
|
+
this.state = { state: "not_loaded" };
|
|
36
36
|
throw e;
|
|
37
|
-
})
|
|
38
|
-
.then((result) => {
|
|
39
|
-
this._loadedObject = result;
|
|
40
|
-
this._isLoaded = true;
|
|
41
|
-
return result;
|
|
42
37
|
});
|
|
43
|
-
|
|
44
|
-
|
|
38
|
+
this.state = { state: "loading", promise: loadingPromise };
|
|
39
|
+
return loadingPromise;
|
|
40
|
+
case "loading":
|
|
41
|
+
return this.state.promise;
|
|
42
|
+
case "loaded":
|
|
43
|
+
return Promise.resolve(this.state.value);
|
|
45
44
|
}
|
|
46
45
|
}
|
|
47
46
|
/**
|
|
48
47
|
* Returns null if the object is not loaded yet.
|
|
49
48
|
*/
|
|
50
49
|
getSync() {
|
|
51
|
-
return this.
|
|
50
|
+
return this.state.state === "loaded" ? this.state.value : this.defaultValue;
|
|
52
51
|
}
|
|
53
52
|
/**
|
|
54
53
|
* Only call this function if you know that the object is already loaded.
|
|
55
54
|
*/
|
|
56
55
|
getLoaded() {
|
|
57
|
-
|
|
56
|
+
if (this.state.state === "loaded") {
|
|
57
|
+
return this.state.value;
|
|
58
|
+
}
|
|
59
|
+
else {
|
|
60
|
+
throw new Error("Not loaded!");
|
|
61
|
+
}
|
|
58
62
|
}
|
|
59
63
|
/**
|
|
60
64
|
* Removes the currently loaded object, so it will be loaded again with the next getAsync() call. Does not set any default value.
|
|
61
65
|
*/
|
|
62
66
|
reset() {
|
|
63
|
-
this.
|
|
64
|
-
this.
|
|
65
|
-
this._loadedObject = null;
|
|
67
|
+
this.state = { state: "not_loaded" };
|
|
68
|
+
this.defaultValue = null;
|
|
66
69
|
}
|
|
67
70
|
/**
|
|
68
71
|
* Loads the object again and replaces the current one
|
|
69
72
|
*/
|
|
70
73
|
async reload() {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
this._loadedObject = result;
|
|
74
|
-
return result;
|
|
75
|
-
});
|
|
74
|
+
this.state = { state: "not_loaded" };
|
|
75
|
+
return this.getAsync();
|
|
76
76
|
}
|
|
77
77
|
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* return a list of words contained in a text, lowercased.
|
|
3
|
+
* @param text
|
|
4
|
+
*/
|
|
5
|
+
export function tokenize(text) {
|
|
6
|
+
if (text == null)
|
|
7
|
+
return [];
|
|
8
|
+
let currentWord = [];
|
|
9
|
+
let words = [];
|
|
10
|
+
for (var i = 0; i < text.length; i++) {
|
|
11
|
+
let currentChar = text.charAt(i);
|
|
12
|
+
if (isEndOfWord(currentChar)) {
|
|
13
|
+
addCurrentWord(currentWord, words);
|
|
14
|
+
currentWord = [];
|
|
15
|
+
}
|
|
16
|
+
else {
|
|
17
|
+
currentWord.push(currentChar);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
addCurrentWord(currentWord, words);
|
|
21
|
+
return words;
|
|
22
|
+
}
|
|
23
|
+
function addCurrentWord(currentWord, words) {
|
|
24
|
+
while (currentWord.length > 0 && currentWord[0] === "'") {
|
|
25
|
+
currentWord.shift();
|
|
26
|
+
}
|
|
27
|
+
while (currentWord.length > 0 && currentWord[currentWord.length - 1] === "'") {
|
|
28
|
+
currentWord.pop();
|
|
29
|
+
}
|
|
30
|
+
if (currentWord.length > 0) {
|
|
31
|
+
words.push(currentWord.join("").toLowerCase());
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
function isEndOfWord(char) {
|
|
35
|
+
switch (char) {
|
|
36
|
+
case " ":
|
|
37
|
+
case "\n":
|
|
38
|
+
case "\r":
|
|
39
|
+
case "\t":
|
|
40
|
+
case "\x0B":
|
|
41
|
+
case "\f":
|
|
42
|
+
case ".":
|
|
43
|
+
case ",":
|
|
44
|
+
case ":":
|
|
45
|
+
case ";":
|
|
46
|
+
case "!":
|
|
47
|
+
case "?":
|
|
48
|
+
case "&":
|
|
49
|
+
case '"':
|
|
50
|
+
case "<":
|
|
51
|
+
case ">":
|
|
52
|
+
case "-":
|
|
53
|
+
case "+":
|
|
54
|
+
case "=":
|
|
55
|
+
case "(":
|
|
56
|
+
case ")":
|
|
57
|
+
case "[":
|
|
58
|
+
case "]":
|
|
59
|
+
case "{":
|
|
60
|
+
case "}":
|
|
61
|
+
case "/":
|
|
62
|
+
case "\\":
|
|
63
|
+
case "^":
|
|
64
|
+
case "_":
|
|
65
|
+
case "`":
|
|
66
|
+
case "~":
|
|
67
|
+
case "|":
|
|
68
|
+
case "@":
|
|
69
|
+
return true;
|
|
70
|
+
default:
|
|
71
|
+
return false;
|
|
72
|
+
}
|
|
73
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { concat, numberRange, arrayEquals, arrayEqualsWithPredicate, arrayHash, remove, clear, findAll, findAndRemove, findAllAndRemove, replace, mapAndFilterNull, filterNull, last, isEmpty, lastThrow, getFirstOrThrow, first, findLast, findLastIndex, contains, addAll, removeAll, groupByAndMapUniquely, groupByAndMap, groupBy, splitInChunks, flatMap, insertIntoSortedArray, zip, deduplicate, binarySearch, lastIndex, union, difference, symmetricDifference, partition, splitUint8ArrayInChunks, partitionAsync, arrayOf, count,
|
|
1
|
+
export { concat, numberRange, arrayEquals, arrayEqualsWithPredicate, arrayHash, remove, clear, findAll, findAndRemove, findAllAndRemove, replace, mapAndFilterNull, filterNull, last, isEmpty, lastThrow, getFirstOrThrow, first, findLast, findLastIndex, contains, addAll, removeAll, groupByAndMapUniquely, groupByAndMap, groupBy, splitInChunks, flatMap, insertIntoSortedArray, zip, deduplicate, binarySearch, lastIndex, union, difference, symmetricDifference, partition, splitUint8ArrayInChunks, partitionAsync, arrayOf, count, zeroOut, } from "./ArrayUtils.js";
|
|
2
2
|
export { AsyncResult } from "./AsyncResult.js";
|
|
3
3
|
export { intersection, trisectingDiff, setAddAll, max, maxBy, findBy, min, minBy, mapWith, mapWithout, setEquals, setMap } from "./CollectionUtils.js";
|
|
4
4
|
export { DAY_IN_MILLIS, getStartOfNextDay, getEndOfDay, getStartOfDay, getHourOfDay, isStartOfDay, isToday, isSameDay, getDayShifted, incrementDate, incrementMonth, isSameDayOfDate, formatSortableDate, formatSortableDateTime, sortableTimestamp, isValidDate, millisToDays, daysToMillis, TIMESTAMP_ZERO_YEAR, } from "./DateUtils.js";
|
|
@@ -19,3 +19,4 @@ export type { Callback, DeferredObject, lazy, lazyAsync, Thunk, DeferredObjectWi
|
|
|
19
19
|
export { callWebAssemblyFunctionWithArguments, allocateBuffer, Ptr, ConstPtr, FreeFN, MutableUint8Array, SecureFreeUint8Array, mutableSecureFree, secureFree, mutable, } from "./WebAssembly.js";
|
|
20
20
|
export { mod, clamp } from "./MathUtils.js";
|
|
21
21
|
export { renderCsv } from "./Csv.js";
|
|
22
|
+
export { tokenize } from "./Tokenizer.js";
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { concat, numberRange, arrayEquals, arrayEqualsWithPredicate, arrayHash, remove, clear, findAll, findAndRemove, findAllAndRemove, replace, mapAndFilterNull, filterNull, last, isEmpty, lastThrow, getFirstOrThrow, first, findLast, findLastIndex, contains, addAll, removeAll, groupByAndMapUniquely, groupByAndMap, groupBy, splitInChunks, flatMap, insertIntoSortedArray, zip, deduplicate, binarySearch, lastIndex, union, difference, symmetricDifference, partition, splitUint8ArrayInChunks, partitionAsync, arrayOf, count,
|
|
1
|
+
export { concat, numberRange, arrayEquals, arrayEqualsWithPredicate, arrayHash, remove, clear, findAll, findAndRemove, findAllAndRemove, replace, mapAndFilterNull, filterNull, last, isEmpty, lastThrow, getFirstOrThrow, first, findLast, findLastIndex, contains, addAll, removeAll, groupByAndMapUniquely, groupByAndMap, groupBy, splitInChunks, flatMap, insertIntoSortedArray, zip, deduplicate, binarySearch, lastIndex, union, difference, symmetricDifference, partition, splitUint8ArrayInChunks, partitionAsync, arrayOf, count, zeroOut, } from "./ArrayUtils.js";
|
|
2
2
|
export { AsyncResult } from "./AsyncResult.js";
|
|
3
3
|
export { intersection, trisectingDiff, setAddAll, max, maxBy, findBy, min, minBy, mapWith, mapWithout, setEquals, setMap } from "./CollectionUtils.js";
|
|
4
4
|
export { DAY_IN_MILLIS, getStartOfNextDay, getEndOfDay, getStartOfDay, getHourOfDay, isStartOfDay, isToday, isSameDay, getDayShifted, incrementDate, incrementMonth, isSameDayOfDate, formatSortableDate, formatSortableDateTime, sortableTimestamp, isValidDate, millisToDays, daysToMillis, TIMESTAMP_ZERO_YEAR, } from "./DateUtils.js";
|
|
@@ -14,3 +14,4 @@ export { defer, deferWithHandler, asyncFind, asyncFindAndMap, executeInGroups, n
|
|
|
14
14
|
export { callWebAssemblyFunctionWithArguments, allocateBuffer, MutableUint8Array, SecureFreeUint8Array, mutableSecureFree, secureFree, mutable, } from "./WebAssembly.js";
|
|
15
15
|
export { mod, clamp } from "./MathUtils.js";
|
|
16
16
|
export { renderCsv } from "./Csv.js";
|
|
17
|
+
export { tokenize } from "./Tokenizer.js";
|
package/dist/tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../tutanota-crypto/node_modules/typescript/lib/lib.es5.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2016.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2017.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2018.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2019.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2021.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.dom.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.webworker.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.core.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2017.object.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2017.string.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2019.array.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2019.object.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2019.string.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.date.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.string.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.number.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2021.string.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.decorators.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../lib/TypeRef.ts","../lib/Utils.ts","../lib/MapUtils.ts","../lib/ArrayUtils.ts","../lib/AsyncResult.ts","../lib/CollectionUtils.ts","../lib/Csv.ts","../lib/DateUtils.ts","../lib/Encoding.ts","../lib/LazyLoaded.ts","../lib/MathUtils.ts","../lib/PromiseMap.ts","../lib/PromiseUtils.ts","../lib/SortedArray.ts","../lib/StringUtils.ts","../lib/WebAssembly.ts","../lib/index.ts","../../../types/globals.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569",{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true},{"version":"62e1c7a72e1b022223e86a5e7bbabbd2931ab5ec141c940e45db8facfb0d9f0f","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"1be52d219829675b133fce90160462a5baa04c5def58275b0fab3c7040c25955","signature":"5bbb9911220295cc2d2e38a94b7c0e5a03f2869757411f99efaa41d01a0dde72"},{"version":"10f57d05dc1810d7b7e1147b25cf6f7cf2c580de6902917157d626fad17a4de9","signature":"78fe0ac7655374e4c092e497b708a4633ccb7ac37b1ccb631c7f6b61d591a5e6"},{"version":"c35983642f85a38e1f49ead1fe3eeeb23f0308be6a0b3627681031fb620caea6","signature":"e3101149104640c4c6c4b253fe10c1a30ae239686b821884ac0ab4f4796df770"},{"version":"035db4f936a60ccea09dc7ca13bf15a31502f25c35f2c79dc898d80fa3718f88","signature":"3aedd26cb64d795a838c74aa87c182594537d47bf136e9da7ca71310ac2e951c"},{"version":"3d111ac9e9c03126fb8fca5d8453c2ba353c0fb699610beeeb83530adb32d0da","signature":"fe357ec2df98dd3099a24e46378e48a962cfc060700a60b956e1edb78fbd6945"},{"version":"02d8d08657c02006d8c63cc8a8726ae8f8c3bd3edb27649e342427c6454956a0","signature":"6ce2a899d9c07481e95ef3b259ebc65ace1c6b8938b94fc1c94237f717740284"},{"version":"e1ad39c041ebe934ecba32093aa1b1032520db0993239d9e83c641898c7e44d7","signature":"e4c70ab653202cf579d697dd9f7c4134c427723c791a760a9ee76593c5201706"},{"version":"af445b5fe17ed36c24499f7ee93787c93ed29b7467698ba4cf1d40ab76199bca","signature":"aff31a493e793a6426527a640e03824a3d443e11d83ebbea760e4a88f1046b93"},{"version":"eead5205a20fe3e1828bfb1629e07f8e087a4d22fc22f12ef583293ce13bdf99","signature":"a52e1327bafccda903e9b948407725b28fcb7d2c994b5ef1095d5940c754d726"},{"version":"a61a2326aef3954d4da05b803e1f3e2e30312064cc1fb9e37698d1c5872883c2","signature":"c62081516049e826fd75df960f0e2457427ca5c0a4518628e1558c2e7961e102"},{"version":"f2376cb45d3b18286678b2f98b99be8d518f1ee012da1de285588a6af827cb06","signature":"f2f97bf1d679cf78001b997487a399d624c2eaa3f5783754c08bd3b58c60fadb"},{"version":"19e83bd4d86a1b8ce35a47456eabc3bcd4202ce20b523176715eb487f32f2872","signature":"ddfc56edb0e758326659ad046088e892e1e80e0a60f4179dc742b7e6b1fcc961"},{"version":"af8bf6c94593cf31ebcf1019054d8f5c32d60a1079b91bde31569ca12431629f","signature":"4e1a189df8d26b882701748ae07c5054471b5c67bb5cf2330d26fec0b6a16ed6"},{"version":"c4d9a5c2c13ada6a036dff6ba366d6f5ba4ca96e113f4e7e89f51ce253045a33","signature":"b5f2b568fadab7a51d2ba69199fb0af6d8a13594281ef6f3a561e0f9a82fc483"},{"version":"91859d2f14275c18c4a039015479254ed0c0108966060586b2e3ea26f437e989","signature":"a2ce8a142d300930928eadaee5ddd1f724aafc24c8efddce63bbf8787fe82e27"},{"version":"1323bdd176ffa305b18a43de58151f970dcb2b36923a9663fa7311955a30b3d5","signature":"0b6bcaba2dbe73e75660221699febf93877d345988d5c8fbb7f969914d908431"},{"version":"dd96eb086e11ddd84135f49c6bc8cab963c0c90ae83b77f24828f96ed1318f70","signature":"57115b45bf26d5b21706f972089e9447d174bd857b0a460071c1995a23863c63"},{"version":"795d2b919e88d361c8dd36736b26933957e87e46c2af501f516e90a61af47af7","affectsGlobalScope":true},"efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"e2eb1ce13a9c0fa7ab62c63909d81973ef4b707292667c64f1e25e6e53fa7afa","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","91073e48c8e2833110f328848b2c298425bd596a332107f248de6f28b2311f5e","bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","f1ace2d2f98429e007d017c7a445efad2aaebf8233135abdb2c88b8c0fef91ab","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"1b6d2b76e8a526c7e26f96df0f4fb49510b281597dbf95225c231781fa2d1614","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"f325631e35c2bc4815911085c55e21109b7c500d8e467524252363bd859f6e50","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","8013f6c4d1632da8f1c4d3d702ae559acccd0f1be05360c31755f272587199c9",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447"],"root":[[51,68]],"options":{"allowSyntheticDefaultImports":true,"alwaysStrict":true,"composite":true,"declaration":true,"esModuleInterop":true,"module":7,"noEmitOnError":true,"noErrorTruncation":true,"noImplicitAny":true,"noImplicitThis":true,"noStrictGenericChecks":false,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","rootDir":"../lib","skipLibCheck":true,"strict":false,"strictBindCallApply":true,"strictFunctionTypes":false,"strictNullChecks":true,"strictPropertyInitialization":true,"target":8,"tsBuildInfoFile":"./tsbuildinfo","useUnknownInCatchVariables":false},"fileIdsList":[[69],[105],[106,111,139],[107,118,119,126,136,147],[107,108,118,126],[109,148],[110,111,119,127],[111,136,144],[112,114,118,126],[105,113],[114,115],[118],[116,118],[105,118],[118,119,120,136,147],[118,119,120,133,136,139],[103,106,152],[114,118,121,126,136,147],[118,119,121,122,126,136,144,147],[121,123,136,144,147],[69,70,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154],[118,124],[125,147,152],[114,118,126,136],[127],[128],[105,129],[130,146,152],[131],[132],[118,133,134],[133,135,148,150],[106,118,136,137,138,139],[106,136,138],[136,137],[139],[140],[105,136],[118,142,143],[142,143],[111,126,136,144],[145],[126,146],[106,121,132,147],[111,148],[136,149],[125,150],[151],[106,111,118,120,129,136,147,150,152],[136,153],[80,84,147],[80,136,147],[75],[77,80,144,147],[126,144],[155],[75,155],[77,80,126,147],[72,73,76,79,106,118,136,147],[72,78],[76,80,106,139,147,155],[106,155],[96,106,155],[74,75,155],[80],[74,75,76,77,78,79,80,81,82,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,102],[80,87,88],[78,80,88,89],[79],[72,75,80],[80,84,88,89],[84],[78,80,83,147],[72,77,78,80,84,87],[106,136],[75,80,96,106,152,155],[52,53],[52],[62],[54],[51],[59],[51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66]],"referencedMap":[[69,1],[70,1],[105,2],[106,3],[107,4],[108,5],[109,6],[110,7],[111,8],[112,9],[113,10],[114,11],[115,11],[117,12],[116,13],[118,14],[119,15],[120,16],[104,17],[121,18],[122,19],[123,20],[155,21],[124,22],[125,23],[126,24],[127,25],[128,26],[129,27],[130,28],[131,29],[132,30],[133,31],[134,31],[135,32],[136,33],[138,34],[137,35],[139,36],[140,37],[141,38],[142,39],[143,40],[144,41],[145,42],[146,43],[147,44],[148,45],[149,46],[150,47],[151,48],[152,49],[153,50],[87,51],[94,52],[86,51],[101,53],[78,54],[77,55],[100,56],[95,57],[98,58],[80,59],[79,60],[75,61],[74,62],[97,63],[76,64],[81,65],[85,65],[103,66],[102,65],[89,67],[90,68],[92,69],[88,70],[91,71],[96,56],[83,72],[84,73],[93,74],[73,75],[99,76],[54,77],[56,78],[60,78],[53,78],[63,79],[64,80],[65,78],[52,81],[66,82],[67,83]],"exportedModulesMap":[[69,1],[70,1],[105,2],[106,3],[107,4],[108,5],[109,6],[110,7],[111,8],[112,9],[113,10],[114,11],[115,11],[117,12],[116,13],[118,14],[119,15],[120,16],[104,17],[121,18],[122,19],[123,20],[155,21],[124,22],[125,23],[126,24],[127,25],[128,26],[129,27],[130,28],[131,29],[132,30],[133,31],[134,31],[135,32],[136,33],[138,34],[137,35],[139,36],[140,37],[141,38],[142,39],[143,40],[144,41],[145,42],[146,43],[147,44],[148,45],[149,46],[150,47],[151,48],[152,49],[153,50],[87,51],[94,52],[86,51],[101,53],[78,54],[77,55],[100,56],[95,57],[98,58],[80,59],[79,60],[75,61],[74,62],[97,63],[76,64],[81,65],[85,65],[103,66],[102,65],[89,67],[90,68],[92,69],[88,70],[91,71],[96,56],[83,72],[84,73],[93,74],[73,75],[99,76],[60,78],[63,79],[65,78],[67,83]],"semanticDiagnosticsPerFile":[69,70,105,106,107,108,109,110,111,112,113,114,115,117,116,118,119,120,104,154,121,122,123,155,124,125,126,127,128,129,130,131,132,133,134,135,136,138,137,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,71,87,94,86,101,78,77,100,95,98,80,79,75,74,97,76,81,82,85,72,103,102,89,90,92,88,91,96,83,84,93,73,99,49,50,9,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,1,48,10,54,55,56,57,58,59,60,53,61,62,63,64,65,51,52,66,67,68],"latestChangedDtsFile":"./index.d.ts"},"version":"5.0.3"}
|
|
1
|
+
{"program":{"fileNames":["../../tutanota-crypto/node_modules/typescript/lib/lib.es5.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2016.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2017.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2018.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2019.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2021.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.dom.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.webworker.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.core.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2017.object.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2017.string.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2019.array.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2019.object.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2019.string.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.date.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.string.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2020.number.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2021.string.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.decorators.d.ts","../../tutanota-crypto/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../lib/TypeRef.ts","../lib/Utils.ts","../lib/MapUtils.ts","../lib/ArrayUtils.ts","../lib/AsyncResult.ts","../lib/CollectionUtils.ts","../lib/Csv.ts","../lib/DateUtils.ts","../lib/Encoding.ts","../lib/LazyLoaded.ts","../lib/MathUtils.ts","../lib/PromiseMap.ts","../lib/PromiseUtils.ts","../lib/SortedArray.ts","../lib/StringUtils.ts","../lib/Tokenizer.ts","../lib/WebAssembly.ts","../lib/index.ts","../../../types/globals.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569",{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true},{"version":"62e1c7a72e1b022223e86a5e7bbabbd2931ab5ec141c940e45db8facfb0d9f0f","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"1be52d219829675b133fce90160462a5baa04c5def58275b0fab3c7040c25955","signature":"5bbb9911220295cc2d2e38a94b7c0e5a03f2869757411f99efaa41d01a0dde72"},{"version":"10f57d05dc1810d7b7e1147b25cf6f7cf2c580de6902917157d626fad17a4de9","signature":"78fe0ac7655374e4c092e497b708a4633ccb7ac37b1ccb631c7f6b61d591a5e6"},{"version":"c35983642f85a38e1f49ead1fe3eeeb23f0308be6a0b3627681031fb620caea6","signature":"e3101149104640c4c6c4b253fe10c1a30ae239686b821884ac0ab4f4796df770"},{"version":"eafa23b2afe977f97cb49ed8b6bdd2a25ec4c37552fce30ea3b37211011d0645","signature":"ce850e03a59c428b196bcbe18ab83311b9a632e94f9f6214c04f68adb8531847"},{"version":"3d111ac9e9c03126fb8fca5d8453c2ba353c0fb699610beeeb83530adb32d0da","signature":"fe357ec2df98dd3099a24e46378e48a962cfc060700a60b956e1edb78fbd6945"},{"version":"02d8d08657c02006d8c63cc8a8726ae8f8c3bd3edb27649e342427c6454956a0","signature":"6ce2a899d9c07481e95ef3b259ebc65ace1c6b8938b94fc1c94237f717740284"},{"version":"e1ad39c041ebe934ecba32093aa1b1032520db0993239d9e83c641898c7e44d7","signature":"e4c70ab653202cf579d697dd9f7c4134c427723c791a760a9ee76593c5201706"},{"version":"afade989af319e98dd75856a70987a2a00eaf453b75efe20046b32a608529012","signature":"9cddd6c237826f36add2decaad02b7f5d2cc9b11967c75e9b03c4346b4a37378"},{"version":"eead5205a20fe3e1828bfb1629e07f8e087a4d22fc22f12ef583293ce13bdf99","signature":"a52e1327bafccda903e9b948407725b28fcb7d2c994b5ef1095d5940c754d726"},{"version":"73348a8849f95761978b89b57a6e4ba6d22d1b22f412e355966c82aa181232b6","signature":"d00b7ca683f871487761454e06bf22a02ec61822acc203ed3468b64308015c34"},{"version":"f2376cb45d3b18286678b2f98b99be8d518f1ee012da1de285588a6af827cb06","signature":"f2f97bf1d679cf78001b997487a399d624c2eaa3f5783754c08bd3b58c60fadb"},{"version":"19e83bd4d86a1b8ce35a47456eabc3bcd4202ce20b523176715eb487f32f2872","signature":"ddfc56edb0e758326659ad046088e892e1e80e0a60f4179dc742b7e6b1fcc961"},{"version":"af8bf6c94593cf31ebcf1019054d8f5c32d60a1079b91bde31569ca12431629f","signature":"4e1a189df8d26b882701748ae07c5054471b5c67bb5cf2330d26fec0b6a16ed6"},{"version":"c4d9a5c2c13ada6a036dff6ba366d6f5ba4ca96e113f4e7e89f51ce253045a33","signature":"b5f2b568fadab7a51d2ba69199fb0af6d8a13594281ef6f3a561e0f9a82fc483"},{"version":"91859d2f14275c18c4a039015479254ed0c0108966060586b2e3ea26f437e989","signature":"a2ce8a142d300930928eadaee5ddd1f724aafc24c8efddce63bbf8787fe82e27"},{"version":"96f7fa9f47b34e9009b1e74247e0088451d08220afd4ea84f511e847a2c0903f","signature":"f597c179836327684f463b6ff8ba92893ce927820051007b297079fde3235601"},{"version":"1323bdd176ffa305b18a43de58151f970dcb2b36923a9663fa7311955a30b3d5","signature":"0b6bcaba2dbe73e75660221699febf93877d345988d5c8fbb7f969914d908431"},{"version":"e278c646df34919282318970ef68e37b856ba302a537162e2988723318073fd7","signature":"f474b8761b0f63f1e40f7070ce2b1e1244500519a0c613b1c5f464285fb30f7a"},{"version":"795d2b919e88d361c8dd36736b26933957e87e46c2af501f516e90a61af47af7","affectsGlobalScope":true},"efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"e2eb1ce13a9c0fa7ab62c63909d81973ef4b707292667c64f1e25e6e53fa7afa","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","1b282e90846fada1e96dc1cf5111647d6ab5985c8d7b5c542642f1ea2739406d","bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","f1ace2d2f98429e007d017c7a445efad2aaebf8233135abdb2c88b8c0fef91ab","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7424817d5eb498771e6d1808d726ec38f75d2eaf3fa359edd5c0c540c52725c1","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","8013f6c4d1632da8f1c4d3d702ae559acccd0f1be05360c31755f272587199c9",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447"],"root":[[51,69]],"options":{"allowSyntheticDefaultImports":true,"alwaysStrict":true,"composite":true,"declaration":true,"esModuleInterop":true,"module":7,"noEmitOnError":true,"noErrorTruncation":true,"noImplicitAny":true,"noImplicitThis":true,"noStrictGenericChecks":false,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","rootDir":"../lib","skipLibCheck":true,"strict":false,"strictBindCallApply":true,"strictFunctionTypes":false,"strictNullChecks":true,"strictPropertyInitialization":true,"target":8,"tsBuildInfoFile":"./tsbuildinfo","useUnknownInCatchVariables":false},"fileIdsList":[[70],[106],[107,112,140],[108,119,120,127,137,148],[108,109,119,127],[110,149],[111,112,120,128],[112,137,145],[113,115,119,127],[106,114],[115,116],[119],[117,119],[106,119],[119,120,121,137,148],[119,120,121,134,137,140],[104,107,153],[115,119,122,127,137,148],[119,120,122,123,127,137,145,148],[122,124,137,145,148],[70,71,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155],[119,125],[126,148,153],[115,119,127,137],[128],[129],[106,130],[131,147,153],[132],[133],[119,134,135],[134,136,149,151],[107,119,137,138,139,140],[107,137,139],[137,138],[140],[141],[106,137],[119,143,144],[143,144],[112,127,137,145],[146],[127,147],[107,122,133,148],[112,149],[137,150],[126,151],[152],[107,112,119,121,130,137,148,151,153],[137,154],[81,85,148],[81,137,148],[76],[78,81,145,148],[127,145],[156],[76,156],[78,81,127,148],[73,74,77,80,107,119,137,148],[73,79],[77,81,107,140,148,156],[107,156],[97,107,156],[75,76,156],[81],[75,76,77,78,79,80,81,82,83,85,86,87,88,89,90,91,92,93,94,95,96,98,99,100,101,102,103],[81,88,89],[79,81,89,90],[80],[73,76,81],[81,85,89,90],[85],[79,81,84,148],[73,78,79,81,85,88],[107,137],[76,81,97,107,153,156],[52,53],[52],[62],[54],[51],[59],[51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67]],"referencedMap":[[70,1],[71,1],[106,2],[107,3],[108,4],[109,5],[110,6],[111,7],[112,8],[113,9],[114,10],[115,11],[116,11],[118,12],[117,13],[119,14],[120,15],[121,16],[105,17],[122,18],[123,19],[124,20],[156,21],[125,22],[126,23],[127,24],[128,25],[129,26],[130,27],[131,28],[132,29],[133,30],[134,31],[135,31],[136,32],[137,33],[139,34],[138,35],[140,36],[141,37],[142,38],[143,39],[144,40],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,48],[153,49],[154,50],[88,51],[95,52],[87,51],[102,53],[79,54],[78,55],[101,56],[96,57],[99,58],[81,59],[80,60],[76,61],[75,62],[98,63],[77,64],[82,65],[86,65],[104,66],[103,65],[90,67],[91,68],[93,69],[89,70],[92,71],[97,56],[84,72],[85,73],[94,74],[74,75],[100,76],[54,77],[56,78],[60,78],[53,78],[63,79],[64,80],[65,78],[52,81],[67,82],[68,83]],"exportedModulesMap":[[70,1],[71,1],[106,2],[107,3],[108,4],[109,5],[110,6],[111,7],[112,8],[113,9],[114,10],[115,11],[116,11],[118,12],[117,13],[119,14],[120,15],[121,16],[105,17],[122,18],[123,19],[124,20],[156,21],[125,22],[126,23],[127,24],[128,25],[129,26],[130,27],[131,28],[132,29],[133,30],[134,31],[135,31],[136,32],[137,33],[139,34],[138,35],[140,36],[141,37],[142,38],[143,39],[144,40],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,48],[153,49],[154,50],[88,51],[95,52],[87,51],[102,53],[79,54],[78,55],[101,56],[96,57],[99,58],[81,59],[80,60],[76,61],[75,62],[98,63],[77,64],[82,65],[86,65],[104,66],[103,65],[90,67],[91,68],[93,69],[89,70],[92,71],[97,56],[84,72],[85,73],[94,74],[74,75],[100,76],[60,78],[63,79],[65,78],[68,83]],"semanticDiagnosticsPerFile":[70,71,106,107,108,109,110,111,112,113,114,115,116,118,117,119,120,121,105,155,122,123,124,156,125,126,127,128,129,130,131,132,133,134,135,136,137,139,138,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,72,88,95,87,102,79,78,101,96,99,81,80,76,75,98,77,82,83,86,73,104,103,90,91,93,89,92,97,84,85,94,74,100,49,50,9,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,1,48,10,54,55,56,57,58,59,60,53,61,62,63,64,65,66,51,52,67,68,69],"latestChangedDtsFile":"./index.d.ts"},"version":"5.0.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tutao/tutanota-utils",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.121.0",
|
|
4
4
|
"license": "GPL-3.0",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
],
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"typescript": "5.0.3",
|
|
26
|
-
"@tutao/otest": "3.
|
|
26
|
+
"@tutao/otest": "3.121.0"
|
|
27
27
|
}
|
|
28
28
|
}
|