taraskevizer 8.0.27 → 9.0.1

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/README.md CHANGED
@@ -27,41 +27,36 @@ import {
27
27
  tarask,
28
28
  pipelines,
29
29
  TaraskConfig,
30
+ htmlConfigOptions,
31
+ ansiColorWrappers,
30
32
  alphabets,
31
- J,
33
+ REPLACE_J,
32
34
  VARIATION,
33
35
  } from 'taraskevizer';
34
36
 
35
- tarask('планета', pipelines.plainText);
37
+ tarask('планета', pipelines.tar);
36
38
  // "плянэта"
37
39
 
38
40
  const cfg = new TaraskConfig({
39
- general: {
40
- abc: alphabets.cyrillic,
41
- j: J.ALWAYS,
42
- },
43
- nonHtml: {
44
- ansiColors: true,
45
- variations: VARIATION.FIRST,
46
- h: false,
47
- },
41
+ abc: alphabets.cyrillic,
42
+ j: REPLACE_J.ALWAYS,
43
+ variations: VARIATION.FIRST,
44
+ wrapperDict: ansiColorWrappers,
45
+ g: true,
48
46
  });
49
- tarask('планета і Гродна', pipelines.plainText, cfg);
47
+ tarask('планета і Гродна', pipelines.tar, cfg);
50
48
  // "пл\x1b[32mя\x1b[0mн\x1b[32mэ\x1b[0mта \x1b[32mй\x1b[0m \x1b[35mГорадня\x1b[0m"
51
49
 
52
- const cfg = new TaraskConfig({
53
- general: {
54
- abc: alphabets.latin,
55
- },
56
- html: {
57
- g: false, // ignored, because alphabet is set to latin
58
- },
50
+ const htmlCfg = new TaraskConfig({
51
+ abc: alphabets.latin,
52
+ g: false,
53
+ ...htmlConfigOptions,
59
54
  });
60
- tarask('энергія планеты', pipelines.html, cfg);
55
+ tarask('энергія планеты', pipelines.tar, htmlCfg);
61
56
  // "en<tarF>erg</tarF>ija p<tarF>lan</tarF>ety"
62
57
 
63
58
  const latinWithJiCfg = new TaraskConfig({
64
- general: { abc: alphabets.latinJi },
59
+ abc: alphabets.latinJi,
65
60
  });
66
61
 
67
62
  tarask('яна і іншыя', pipelines.abcOnly, latinWithJiCfg);
package/dist/bin.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { dicts, REPLACE_J, VARIATION, TaraskConfig, tarask, pipelines, } from './index.js';
2
+ import { dicts, REPLACE_J, VARIATION, TaraskConfig, tarask, pipelines, htmlConfigOptions, ansiColorWrappers, } from './index.js';
3
3
  const prefix = '\x1b[34m[taraskevizer]\x1b[0m ';
4
4
  const printWithPrefix = (msg) => {
5
5
  process.stdout.write(prefix + msg + '\n');
@@ -7,7 +7,7 @@ const printWithPrefix = (msg) => {
7
7
  process.argv.splice(0, 2);
8
8
  const checkForOptions = (options) => process.argv[0] && options.includes(process.argv[0].toLowerCase());
9
9
  if (checkForOptions(['-v', '--version'])) {
10
- printWithPrefix("8.0.27");
10
+ printWithPrefix("9.0.1");
11
11
  process.exit(0);
12
12
  }
13
13
  if (checkForOptions(['-h', '--help'])) {
@@ -47,7 +47,7 @@ Replace ґ(g) by г(h) in cyrillic alphabet:
47
47
 
48
48
  Variations:
49
49
  -nv --no-variations
50
- -fvo --first-variation-only
50
+ -fv --first-variation
51
51
 
52
52
  Mode (only one can be used):
53
53
  -html --html
@@ -59,12 +59,12 @@ Other:
59
59
  `);
60
60
  process.exit(0);
61
61
  }
62
- const cfg = new TaraskConfig({
63
- general: {},
64
- html: { g: true },
65
- nonHtml: { variations: VARIATION.ALL, ansiColors: true },
66
- });
67
- let mode = 'plainText';
62
+ let cfg = {
63
+ g: true,
64
+ variations: VARIATION.ALL,
65
+ wrapperDict: ansiColorWrappers,
66
+ };
67
+ let mode = 'tar';
68
68
  const toHashTable = (dict) => {
69
69
  const result = {};
70
70
  for (const [options, callback] of dict)
@@ -72,79 +72,79 @@ const toHashTable = (dict) => {
72
72
  result[option] = callback;
73
73
  return result;
74
74
  };
75
+ let isHtml = false;
75
76
  const optionDict = toHashTable([
76
77
  [['--help', '-h'], () => { }],
77
78
  [
78
79
  ['--latin', '-l'],
79
80
  () => {
80
- cfg.general.abc = dicts.alphabets.latin;
81
+ cfg.abc = dicts.alphabets.latin;
81
82
  },
82
83
  ],
83
84
  [
84
85
  ['--latin-ji', '-lj'],
85
86
  () => {
86
- cfg.general.abc = dicts.alphabets.latinJi;
87
+ cfg.abc = dicts.alphabets.latinJi;
87
88
  },
88
89
  ],
89
90
  [
90
91
  ['--arabic', '-a'],
91
92
  () => {
92
- cfg.general.abc = dicts.alphabets.arabic;
93
+ cfg.abc = dicts.alphabets.arabic;
93
94
  },
94
95
  ],
95
96
  [
96
97
  ['--jrandom', '-jr'],
97
98
  () => {
98
- cfg.general.j = REPLACE_J.RANDOM;
99
+ cfg.j = REPLACE_J.RANDOM;
99
100
  },
100
101
  ],
101
102
  [
102
103
  ['--jalways', '-ja'],
103
104
  () => {
104
- cfg.general.j = REPLACE_J.ALWAYS;
105
+ cfg.j = REPLACE_J.ALWAYS;
105
106
  },
106
107
  ],
107
108
  [
108
109
  ['--no-escape-caps', '-nec'],
109
110
  () => {
110
- cfg.general.doEscapeCapitalized = false;
111
+ cfg.doEscapeCapitalized = false;
111
112
  },
112
113
  ],
113
114
  [
114
115
  ['--h'],
115
116
  () => {
116
- cfg.nonHtml.h = true;
117
- cfg.html.g = false;
117
+ cfg.g = false;
118
118
  },
119
119
  ],
120
120
  [
121
121
  ['--no-variations', '-nv'],
122
122
  () => {
123
- cfg.nonHtml.variations = VARIATION.NO;
123
+ cfg.variations = VARIATION.NO;
124
124
  },
125
125
  ],
126
126
  [
127
- ['--first-variation-only', '-fvo'],
127
+ ['--first-variation', '-fv'],
128
128
  () => {
129
- cfg.nonHtml.variations = VARIATION.FIRST;
129
+ cfg.variations = VARIATION.FIRST;
130
130
  },
131
131
  ],
132
132
  [
133
133
  ['--no-color', '-nc'],
134
134
  () => {
135
- cfg.nonHtml.ansiColors = false;
135
+ cfg.wrapperDict = null;
136
136
  },
137
137
  ],
138
138
  [
139
139
  ['--html', '-html'],
140
140
  () => {
141
- mode = 'html';
141
+ isHtml = true;
142
142
  },
143
143
  ],
144
144
  [
145
145
  ['--alphabet-only', '-abc'],
146
146
  () => {
147
- mode = 'abcOnly';
147
+ mode = 'abc';
148
148
  },
149
149
  ],
150
150
  [
@@ -189,6 +189,14 @@ else {
189
189
  }
190
190
  text = Buffer.concat(chunks, length).toString();
191
191
  }
192
+ if (isHtml) {
193
+ // @ts-expect-error
194
+ delete cfg.wrapperDict;
195
+ cfg = new TaraskConfig({ ...htmlConfigOptions, ...cfg });
196
+ }
197
+ else {
198
+ cfg = new TaraskConfig(cfg);
199
+ }
192
200
  if (process.stdout.write(tarask(text, pipelines[mode], cfg) + '\n')) {
193
201
  process.exit(0);
194
202
  }
package/dist/config.d.ts CHANGED
@@ -1,14 +1,92 @@
1
- import type { PartialReadonly, HtmlOptions, NonHtmlOptions, TaraskOptions } from './types';
1
+ import { alphabets } from './dict/index';
2
+ import type { PartialReadonly, ValueOf } from './types';
3
+ import { WrapperDict } from './wrappers';
2
4
  export declare class TaraskConfig {
3
- constructor(options?: PartialReadonly<{
4
- general: PartialReadonly<TaraskOptions>;
5
- html: PartialReadonly<HtmlOptions>;
6
- nonHtml: PartialReadonly<NonHtmlOptions>;
7
- }>);
8
- /** @see {@link TaraskOptions} */
9
- general: TaraskOptions;
10
- /** @see {@link HtmlOptions} */
11
- html: HtmlOptions;
12
- /** @see {@link NonHtmlOptions} */
13
- nonHtml: NonHtmlOptions;
5
+ constructor(options?: PartialReadonly<TaraskConfig>);
6
+ /**
7
+ * Any object that implements the {@link Alphabet} interface.
8
+ *
9
+ * The set of defined alphabets can be found in {@link dicts.alphabets}.
10
+ *
11
+ * @default alphabets.cyrillic
12
+ */
13
+ abc: alphabets.Alphabet;
14
+ /**
15
+ * | Value | When to replace `і`(`i`) by `й`(`j`) after vowels | Example |
16
+ * | ----- | ------------------------------------------------- | ------------------------ |
17
+ * | | | `яна і ён` |
18
+ * | 0 | never | `яна і ён` |
19
+ * | 1 | random | `яна і ён` or `яна й ён` |
20
+ * | 2 | always | `яна й ён` |
21
+ *
22
+ * Has no effect with abc set to {@link dicts.alphabets.latinJi}.
23
+ *
24
+ * @default REPLACE_J.NEVER
25
+ */
26
+ j: ValueOf<{
27
+ readonly NEVER: 0;
28
+ readonly RANDOM: 1;
29
+ readonly ALWAYS: 2;
30
+ }>;
31
+ /**
32
+ * If set to false, may cause unwanted changes in acronyms.
33
+ *
34
+ * @default true
35
+ */
36
+ doEscapeCapitalized: boolean;
37
+ /** @default null */
38
+ wrapperDict: WrapperDict | null;
39
+ /**
40
+ * Do replace ґ(g) by г(h) in cyrillic alphabet?
41
+ *
42
+ * | Value | Example |
43
+ * | ----- | ----------- |
44
+ * | true | Ґвалт ґвалт |
45
+ * | false | Гвалт гвалт |
46
+ * | true | `<tarH>ґ</tarH>валт <tarH>Ґ</tarH>валт` |
47
+ * | false | `<tarH>г</tarH>валт <tarH>Г</tarH>валт` |
48
+ *
49
+ * @default false
50
+ */
51
+ g: boolean;
52
+ /**
53
+ * | Value | Which variation is used if a part of word is variable | Example |
54
+ * | ----- | ----------------------------------------------------- | ----------------- |
55
+ * | | | Гродна |
56
+ * | 0 | main | Гродна |
57
+ * | 1 | first | Горадня |
58
+ * | 2 | all | (Гродна\|Горадня) |
59
+ *
60
+ * @default VARIATION.ALL
61
+ */
62
+ variations: ValueOf<{
63
+ readonly NO: 0;
64
+ readonly FIRST: 1;
65
+ readonly ALL: 2;
66
+ }>;
67
+ newLine: string;
68
+ leftAngleBracket: string;
14
69
  }
70
+ /**
71
+ * Predefined configuration for HTML.
72
+ *
73
+ * @example
74
+ * const htmlCfg = new TaraskConfig({
75
+ * ...myOptions,
76
+ * ...htmlConfigOptions
77
+ * });
78
+ */
79
+ export declare const htmlConfigOptions: {
80
+ wrapperDict: {
81
+ fix: (content: string) => string;
82
+ variable: {
83
+ 2: (content: string) => string;
84
+ 1: (content: string) => string;
85
+ 0: (content: string) => string;
86
+ };
87
+ letterH: (content: string) => string;
88
+ };
89
+ g: false;
90
+ newLine: string;
91
+ leftAngleBracket: string;
92
+ };
package/dist/config.js CHANGED
@@ -1,36 +1,33 @@
1
1
  import { alphabets } from './dict/index.js';
2
2
  import { REPLACE_J, VARIATION } from './constants.js';
3
+ import { htmlWrappers } from './wrappers.js';
3
4
  export class TaraskConfig {
4
5
  constructor(options) {
5
- if (options) {
6
- for (const [target, source] of [
7
- [this.general, options.general],
8
- [this.html, options.html],
9
- [this.nonHtml, options.nonHtml],
10
- ]) {
11
- if (source) {
12
- for (const [key, value] of Object.entries(source)) {
13
- if (value !== undefined)
14
- target[key] = value;
15
- }
16
- }
17
- }
6
+ for (const key in options) {
7
+ const value = options[key];
8
+ if (key in this && value !== undefined)
9
+ this[key] = value;
18
10
  }
19
11
  }
20
12
 
21
- general = {
22
- abc: alphabets.cyrillic,
23
- j: REPLACE_J.NEVER,
24
- doEscapeCapitalized: true,
25
- };
13
+ abc = alphabets.cyrillic;
26
14
 
27
- html = {
28
- g: false,
29
- };
15
+ j = REPLACE_J.NEVER;
30
16
 
31
- nonHtml = {
32
- h: false,
33
- ansiColors: false,
34
- variations: VARIATION.ALL,
35
- };
17
+ doEscapeCapitalized = true;
18
+
19
+ wrapperDict = null;
20
+
21
+ g = true;
22
+
23
+ variations = VARIATION.ALL;
24
+ newLine = '\n';
25
+ leftAngleBracket = '<';
36
26
  }
27
+
28
+ export const htmlConfigOptions = {
29
+ wrapperDict: htmlWrappers,
30
+ g: false,
31
+ newLine: '<br>',
32
+ leftAngleBracket: '&lt',
33
+ };
@@ -8,7 +8,3 @@ export declare const VARIATION: {
8
8
  readonly FIRST: 1;
9
9
  readonly ALL: 2;
10
10
  };
11
- type ValueOf<T> = T[keyof T];
12
- export type OptionJ = ValueOf<typeof REPLACE_J>;
13
- export type Variation = ValueOf<typeof VARIATION>;
14
- export {};
package/dist/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- export type { HtmlOptions, NonHtmlOptions, TaraskOptions } from './types';
2
1
  export * as dicts from './dict/index';
3
2
  export * from './tarask';
4
3
  export * from './config';
5
4
  export * as steps from './steps/index';
6
5
  export * as pipelines from './pipelines';
7
6
  export * as lib from './lib/index';
8
- export { REPLACE_J, VARIATION } from './constants';
7
+ export * from './constants';
8
+ export * from './wrappers';
package/dist/index.js CHANGED
@@ -4,4 +4,5 @@ export * from './config.js';
4
4
  export * as steps from './steps/index.js';
5
5
  export * as pipelines from './pipelines.js';
6
6
  export * as lib from './lib/index.js';
7
- export { REPLACE_J, VARIATION } from './constants.js';
7
+ export * from './constants.js';
8
+ export * from './wrappers.js';
@@ -3,7 +3,6 @@ export * from './highlight-diff';
3
3
  export * from './replace-g';
4
4
  export * from './replace-with-dict';
5
5
  export * from './restore-case';
6
- export * from './wrappers';
7
6
  export * from './mutating-step';
8
7
  export * from './soften';
9
8
  export { dictFrom, copyDict } from './../dict/lib';
package/dist/lib/index.js CHANGED
@@ -3,7 +3,6 @@ export * from './highlight-diff.js';
3
3
  export * from './replace-g.js';
4
4
  export * from './replace-with-dict.js';
5
5
  export * from './restore-case.js';
6
- export * from './wrappers.js';
7
6
  export * from './mutating-step.js';
8
7
  export * from './soften.js';
9
8
  export { dictFrom, copyDict } from './../dict/lib.js';
@@ -16,7 +16,7 @@
16
16
  */
17
17
  import { type TaraskStep } from './steps/index';
18
18
  /**
19
- * Storage for the pipeline {@link abcOnly}.
19
+ * Storage for the pipeline {@link abc}.
20
20
  */
21
21
  type AbcOnlyStorage = {
22
22
  doEscapeCapitalized: boolean;
@@ -24,23 +24,19 @@ type AbcOnlyStorage = {
24
24
  /**
25
25
  * Pipeline for changing only the alphabet.
26
26
  *
27
- * The property `cfg.general.doEscapeCapitalized` is set to `false` during the pipeline execution.
27
+ * The property `cfg.doEscapeCapitalized` is set to `false` during the pipeline execution.
28
28
  *
29
29
  * To see the full list of steps, check the source code.
30
30
  */
31
- export declare const abcOnly: (TaraskStep<import("./steps/resolve-syntax").SpecialSyntaxStorage> | TaraskStep<import("./steps/whitespaces").WhiteSpaceStorage> | TaraskStep<import("./steps/trim").TrimStorage> | (({ storage, cfg: { general } }: {
31
+ export declare const abc: (TaraskStep<import("./steps/resolve-syntax").SpecialSyntaxStorage> | TaraskStep<import("./steps/whitespaces").WhiteSpaceStorage> | TaraskStep<import("./steps/trim").TrimStorage> | (({ storage, cfg }: {
32
32
  text: string;
33
33
  storage: AbcOnlyStorage;
34
34
  cfg: import("./config").TaraskConfig;
35
35
  }) => void))[];
36
36
  /**
37
- * Pipeline for taraskevizing into plain text.
37
+ * Pipeline for taraskevizing.
38
38
  */
39
- export declare const plainText: (TaraskStep<import("./steps/types").SplittedTextStorage> | TaraskStep<import("./steps/resolve-syntax").SpecialSyntaxStorage> | TaraskStep<import("./steps/whitespaces").WhiteSpaceStorage> | TaraskStep<import("./steps/trim").TrimStorage>)[];
40
- /**
41
- * Pipeline for taraskevizing into HTML.
42
- */
43
- export declare const html: (TaraskStep<import("./steps/types").SplittedTextStorage> | TaraskStep<import("./steps/resolve-syntax").SpecialSyntaxStorage> | TaraskStep<import("./steps/whitespaces").WhiteSpaceStorage> | TaraskStep<import("./steps/trim").TrimStorage>)[];
39
+ export declare const tar: (TaraskStep<import("./steps/types").SplittedTextStorage> | TaraskStep<import("./steps/resolve-syntax").SpecialSyntaxStorage> | TaraskStep<import("./steps/whitespaces").WhiteSpaceStorage> | TaraskStep<import("./steps/trim").TrimStorage>)[];
44
40
  /**
45
41
  * Pipeline for phonetizing.
46
42
  * @alpha
package/dist/pipelines.js CHANGED
@@ -1,28 +1,26 @@
1
1
 
2
- import { applyVariationsHtml, applyVariationsNonHtml, applyGHtml, applyGNonHtml, highlightDiffStep, highlightDiffStepNonHtml, applyNoFix, convertAlphabet, convertAlphabetLowerCase, joinSplittedText, prepare, replaceIbyJ, resolveSpecialSyntax, restoreCaseStep, restoreWhitespaces, storeSplittedAbcConvertedOrig, storeSplittedText, taraskevize, phonetize, whitespacesToSpaces, trim, finalize, toLowerCase, iotacizeJi, untrim, } from './steps/index.js';
3
- import { htmlWrappers } from './lib/wrappers.js';
4
- const resolveSpecialSyntaxWithLAB = resolveSpecialSyntax('<');
5
- const finalizeWithNewLine = finalize('\n');
2
+ import { highlightDiffStep, applyNoFix, convertAlphabet, convertAlphabetLowerCase, joinSplittedText, prepare, replaceIbyJ, resolveSpecialSyntax, restoreCaseStep, restoreWhitespaces, storeSplittedAbcConvertedOrig, storeSplittedText, taraskevize, phonetize, whitespacesToSpaces, trim, finalize, toLowerCase, iotacizeJi, untrim, applyG, applyVariations, } from './steps/index.js';
6
3
 
7
- export const abcOnly = [
8
- (({ storage, cfg: { general } }) => {
9
- storage.doEscapeCapitalized = general.doEscapeCapitalized;
10
- general.doEscapeCapitalized = false;
4
+ export const abc = [
5
+ (({ storage, cfg }) => {
6
+ storage.doEscapeCapitalized = cfg.doEscapeCapitalized;
7
+ cfg.doEscapeCapitalized = false;
11
8
  }),
12
9
  trim,
13
- resolveSpecialSyntaxWithLAB,
10
+ resolveSpecialSyntax,
14
11
  prepare,
15
12
  whitespacesToSpaces,
16
13
  convertAlphabet,
17
14
  restoreWhitespaces,
18
15
  applyNoFix,
19
- finalizeWithNewLine,
16
+ finalize,
20
17
  untrim,
21
- (({ storage, cfg: { general } }) => {
22
- general.doEscapeCapitalized = storage.doEscapeCapitalized;
18
+ (({ storage, cfg }) => {
19
+ cfg.doEscapeCapitalized = storage.doEscapeCapitalized;
23
20
  }),
24
21
  ];
25
- const createPipeline = (resolveSpecialSyntax, applyG, applyVariations, finalize, highlightDiffStep) => [
22
+
23
+ export const tar = [
26
24
  trim,
27
25
  resolveSpecialSyntax,
28
26
  prepare,
@@ -44,8 +42,4 @@ const createPipeline = (resolveSpecialSyntax, applyG, applyVariations, finalize,
44
42
  untrim,
45
43
  ];
46
44
 
47
- export const plainText = createPipeline(resolveSpecialSyntaxWithLAB, applyGNonHtml, applyVariationsNonHtml, finalizeWithNewLine, highlightDiffStepNonHtml);
48
-
49
- export const html = createPipeline(resolveSpecialSyntax('&lt;'), applyGHtml, applyVariationsHtml, finalize('<br>'), highlightDiffStep(htmlWrappers.fix));
50
-
51
- export const phonetic = plainText.flatMap((item) => item === taraskevize ? [phonetize, iotacizeJi] : item);
45
+ export const phonetic = tar.flatMap((item) => item === taraskevize ? [phonetize, iotacizeJi] : item);
@@ -1,3 +1,2 @@
1
1
  import type { TaraskStep } from './types';
2
- export declare const applyGHtml: TaraskStep;
3
- export declare const applyGNonHtml: TaraskStep;
2
+ export declare const applyG: TaraskStep;
@@ -1,17 +1,12 @@
1
- import { replaceG, ansiColorWrappers, htmlWrappers } from '../lib/index.js';
1
+ import { replaceG } from '../lib/index.js';
2
2
  import { alphabets, gobj } from '../dict/index.js';
3
- export const applyGHtml = (options) => {
4
- const colorize = htmlWrappers.letterH;
5
- if (options.cfg.general.abc === alphabets.cyrillic)
6
- options.text = replaceG(options.cfg.html.g ? colorize('$&') : ($0) => colorize(gobj[$0]))(options.text);
7
- };
8
- export const applyGNonHtml = (options) => {
9
- const colorize = ansiColorWrappers.variable;
10
- const { cfg: { general: { abc }, nonHtml: { h, ansiColors }, }, } = options;
11
- if (abc === alphabets.cyrillic && (h || ansiColors))
12
- options.text = replaceG(ansiColors
13
- ? h
14
- ? ($0) => colorize(gobj[$0])
15
- : colorize('$&')
3
+ export const applyG = (options) => {
4
+ const { abc, g, wrapperDict } = options.cfg;
5
+ const colorize = wrapperDict?.letterH;
6
+ if (abc === alphabets.cyrillic && (colorize || !g))
7
+ options.text = replaceG(colorize
8
+ ? g
9
+ ? colorize('$&')
10
+ : ($0) => colorize(gobj[$0])
16
11
  : ($0) => gobj[$0])(options.text);
17
12
  };
@@ -1,24 +1 @@
1
- import type { TaraskStep } from './types';
2
- /**
3
- * @param callback - A function that takes an
4
- * array of variable parts and returns a string.
5
- *
6
- * The step replaces strings like `"(a|b|c)"`
7
- * with the result of the callback.
8
- *
9
- * @see {@link applyVariationsHtml}
10
- * @see {@link applyVariationsNonHtml}
11
- */
12
- export declare const applyVariableParts: (callback: (arr: string[]) => string) => TaraskStep;
13
- /**
14
- * Uses {@link applyVariableParts}
15
- *
16
- * @example
17
- * applyVariationsHtml({text: "a(b|c)d"});
18
- * // {text: "a<tarL data-l='c'>b</tarL>d"}
19
- */
20
- export declare const applyVariationsHtml: TaraskStep;
21
- /**
22
- * Uses {@link applyVariableParts}
23
- */
24
- export declare const applyVariationsNonHtml: TaraskStep;
1
+ export declare const applyVariations: import("./types").TaraskStep<{}>;
@@ -1,18 +1,3 @@
1
- import { ansiColorWrappers, mutatingStep } from '../lib/index.js';
2
- import { VARIATION } from '../constants.js';
3
-
4
- export const applyVariableParts = (callback) => mutatingStep(({ text }) => text.replace(/\([^)]*?\)/g, ($0) => callback($0.slice(1, -1).split('|'))));
5
-
6
- export const applyVariationsHtml = applyVariableParts((parts) => {
7
- const main = parts.shift();
8
- return `<tarL data-l='${parts}'>${main}</tarL>`;
9
- });
10
-
11
- export const applyVariationsNonHtml = (options) => {
12
- const partIndex = options.cfg.nonHtml.variations;
13
- const colorize = ansiColorWrappers.variable;
14
- if (partIndex !== VARIATION.ALL)
15
- applyVariableParts(options.cfg.nonHtml.ansiColors
16
- ? (parts) => colorize(parts[partIndex])
17
- : (parts) => parts[partIndex])(options);
18
- };
1
+ import { mutatingStep } from '../lib/index.js';
2
+ import { defaultVariationWrappers } from '../wrappers.js';
3
+ export const applyVariations = mutatingStep(({ text, cfg: { wrapperDict, variations } }) => text.replace(/\([^)]*?\)/g, (wrapperDict?.variable || defaultVariationWrappers)[variations]));
@@ -1,3 +1,3 @@
1
1
  import { mutatingStep, replaceWithDict } from '../lib/index.js';
2
- export const convertAlphabet = mutatingStep(({ text, cfg: { general: { abc: { upper, lower }, }, }, }) => replaceWithDict(replaceWithDict(text, lower), upper));
3
- export const convertAlphabetLowerCase = mutatingStep(({ text, cfg: { general: { abc: { lower }, }, }, }) => replaceWithDict(text, lower));
2
+ export const convertAlphabet = mutatingStep(({ text, cfg: { abc: { upper, lower }, }, }) => replaceWithDict(replaceWithDict(text, lower), upper));
3
+ export const convertAlphabetLowerCase = mutatingStep(({ text, cfg: { abc: { lower }, }, }) => replaceWithDict(text, lower));
@@ -1,4 +1,3 @@
1
- import type { TaraskStep } from './types';
2
1
  /**
3
2
  * @param newLine - The string to replace new lines with.
4
3
  *
@@ -11,4 +10,4 @@ import type { TaraskStep } from './types';
11
10
  *
12
11
  * Removes spaces around punctuation marks and digits.
13
12
  */
14
- export declare const finalize: (newLine: string) => TaraskStep;
13
+ export declare const finalize: import("./types").TaraskStep<{}>;
@@ -1,6 +1,6 @@
1
1
  import { mutatingStep } from '../lib/index.js';
2
2
 
3
- export const finalize = (newLine) => mutatingStep(({ text }) => text
3
+ export const finalize = mutatingStep(({ text, cfg: { newLine } }) => text
4
4
  .replace(/&#40/g, '(')
5
5
  .replace(/&nbsp;/g, ' ')
6
6
  .replace(/ (\p{P}|\p{S}|\d+) /gu, '$1')
@@ -2,8 +2,4 @@ import type { TaraskStep, SplittedTextStorage } from './types';
2
2
  /**
3
3
  * Uses {@link highlightDiff}
4
4
  */
5
- export declare const highlightDiffStep: (highlight: (content: string) => string) => TaraskStep<SplittedTextStorage>;
6
- /**
7
- * Uses {@link highlightDiff}
8
- */
9
- export declare const highlightDiffStepNonHtml: TaraskStep<SplittedTextStorage>;
5
+ export declare const highlightDiffStep: TaraskStep<SplittedTextStorage>;
@@ -1,11 +1,7 @@
1
- import { highlightDiff, ansiColorWrappers } from '../lib/index.js';
1
+ import { highlightDiff } from '../lib/index.js';
2
2
  import { alphabets } from '../dict/index.js';
3
3
 
4
- export const highlightDiffStep = (highlight) => ({ cfg: { general: { abc }, }, storage: { textArr, origArr }, }) => {
5
- highlightDiff(textArr, origArr, abc === alphabets.cyrillic, highlight);
6
- };
7
-
8
- export const highlightDiffStepNonHtml = ({ cfg: { general: { abc }, nonHtml: { ansiColors }, }, storage: { textArr, origArr }, }) => {
9
- if (ansiColors)
10
- highlightDiff(textArr, origArr, abc === alphabets.cyrillic, ansiColorWrappers.fix);
4
+ export const highlightDiffStep = ({ cfg: { abc, wrapperDict }, storage: { textArr, origArr }, }) => {
5
+ if (wrapperDict?.fix)
6
+ highlightDiff(textArr, origArr, abc === alphabets.cyrillic, wrapperDict.fix);
11
7
  };
@@ -2,7 +2,7 @@ import { alphabets } from '../dict/index.js';
2
2
  import { REPLACE_J } from '../constants.js';
3
3
  const toJ = (shortU) => 'й ' + (shortU ? 'у' : '');
4
4
  export const replaceIbyJ = (options) => {
5
- const { abc, j } = options.cfg.general;
5
+ const { abc, j } = options.cfg;
6
6
  if (j && abc !== alphabets.latinJi)
7
7
  options.text = options.text.replace(/(?<=[аеёіоуыэюя] )і (ў?)/g, j === REPLACE_J.ALWAYS
8
8
  ? ($0, $1) => toJ($1)
@@ -21,4 +21,4 @@ export declare const applyNoFix: TaraskStep<SpecialSyntaxStorage>;
21
21
  *
22
22
  * Creates storage: {@link SpecialSyntaxStorage}.
23
23
  */
24
- export declare const resolveSpecialSyntax: (leftAngleBracket: string) => TaraskStep<SpecialSyntaxStorage>;
24
+ export declare const resolveSpecialSyntax: TaraskStep<SpecialSyntaxStorage>;
@@ -10,7 +10,7 @@ export const applyNoFix = (options) => {
10
10
  }
11
11
  };
12
12
 
13
- export const resolveSpecialSyntax = (leftAngleBracket) => mutatingStep(({ text, storage, cfg: { general: { doEscapeCapitalized, abc }, }, }) => {
13
+ export const resolveSpecialSyntax = mutatingStep(({ text, storage, cfg: { doEscapeCapitalized, abc, leftAngleBracket } }) => {
14
14
  const noFixArr = (storage.noFixArr = []);
15
15
  const convertAlphavet = (abcOnlyText, abc) => restoreCase(replaceWithDict(abcOnlyText.toLowerCase(), abc.lower).split(' '), abcOnlyText.split(' ')).join(' ');
16
16
  const escapeCapsIfNeeded = (text) => doEscapeCapitalized
@@ -22,9 +22,7 @@ export const resolveSpecialSyntax = (leftAngleBracket) => mutatingStep(({ text,
22
22
  const parts = text.split(/(?=[<>])/g);
23
23
  if (parts.length === 1)
24
24
  return escapeCapsIfNeeded(text);
25
- let result = text.startsWith('<')
26
- ? ''
27
- : escapeCapsIfNeeded(parts.shift());
25
+ let result = text.startsWith('<') ? '' : escapeCapsIfNeeded(parts.shift());
28
26
  let depth = 0;
29
27
  let currentPart = '';
30
28
  for (const part of parts) {
@@ -1,5 +1,5 @@
1
1
  import { restoreCase } from '../lib/index.js';
2
- export const restoreCaseStep = ({ cfg: { general: { abc }, }, storage: { textArr, origArr }, }) => {
2
+ export const restoreCaseStep = ({ cfg: { abc }, storage: { textArr, origArr }, }) => {
3
3
  if (abc.upper) {
4
4
  restoreCase(textArr, origArr);
5
5
  }
@@ -1,4 +1,4 @@
1
1
  import { replaceWithDict } from '../lib/index.js';
2
- export const storeSplittedAbcConvertedOrig = ({ cfg: { general: { abc: { lower, upper }, }, }, text, storage, }) => {
2
+ export const storeSplittedAbcConvertedOrig = ({ cfg: { abc: { lower, upper }, }, text, storage, }) => {
3
3
  storage.origArr = replaceWithDict(replaceWithDict(text, lower), upper).split(' ');
4
4
  };
package/dist/tarask.d.ts CHANGED
@@ -4,7 +4,7 @@ import type { TaraskStep } from './steps/index';
4
4
  * @returns converted text
5
5
  *
6
6
  * @example
7
- * tarask("планета", plainTextPipeline);
7
+ * tarask("планета", pipelines.tar);
8
8
  * // "плянэта"
9
9
  */
10
10
  export declare const tarask: (text: string, pipeline: TaraskStep<any>[], cfg?: Readonly<TaraskConfig>) => string;
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.object.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.esnext.full.d.ts","../src/dict/types.ts","../src/dict/alphabets/types.ts","../src/dict/alphabets/cyrillic.ts","../src/dict/lib.ts","../src/dict/iwords.ts","../src/dict/alphabets/latin.ts","../src/dict/alphabets/arabic.ts","../src/dict/alphabets/index.ts","../src/constants.ts","../src/types.ts","../src/dict/gobj.ts","../src/dict/iawords.ts","../src/dict/phonetic.ts","../src/dict/wordlist.ts","../src/dict/softening.ts","../src/dict/index.ts","../src/config.ts","../src/lib/types.ts","../src/lib/after-tarask.ts","../src/lib/replace-g.ts","../src/lib/highlight-diff.ts","../src/lib/replace-with-dict.ts","../src/lib/restore-case.ts","../src/lib/wrappers.ts","../src/steps/types.ts","../src/lib/mutating-step.ts","../src/lib/soften.ts","../src/lib/index.ts","../src/steps/convert-alphabet.ts","../src/steps/highlight-diff.ts","../src/steps/i-to-j.ts","../src/steps/join-splitted.ts","../src/steps/apply-g.ts","../src/steps/apply-variations.ts","../src/steps/prepare.ts","../src/steps/resolve-syntax.ts","../src/steps/restore-case.ts","../src/steps/store-splitted-abc-converted-orig.ts","../src/steps/store-splitted-text.ts","../src/steps/taraskevize.ts","../src/steps/phonetize.ts","../src/steps/iotacize-ji.ts","../src/steps/whitespaces.ts","../src/steps/trim.ts","../src/steps/finalize.ts","../src/steps/to-lower-case.ts","../src/steps/index.ts","../src/tarask.ts","../src/pipelines.ts","../src/index.ts","../src/bin.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.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/sea.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","../node_modules/@types/ws/index.d.ts","../node_modules/bun-types/fetch.d.ts","../node_modules/bun-types/globals.d.ts","../node_modules/bun-types/bun.d.ts","../node_modules/bun-types/overrides.d.ts","../node_modules/bun-types/ffi.d.ts","../node_modules/bun-types/test.d.ts","../node_modules/bun-types/html-rewriter.d.ts","../node_modules/bun-types/jsc.d.ts","../node_modules/bun-types/sqlite.d.ts","../node_modules/bun-types/wasm.d.ts","../node_modules/bun-types/deprecated.d.ts","../node_modules/bun-types/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","886e50ef125efb7878f744e86908884c0133e7a6d9d80013f421b0cd8fb2af94",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"73e370058f82add1fdbc78ef3d1aab110108f2d5d9c857cb55d3361982347ace","affectsGlobalScope":true},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"bde31fd423cd93b0eff97197a3f66df7c93e8c0c335cbeb113b7ff1ac35c23f4",{"version":"444dcc136024f27c3e2e452b3065003a3eb21d91552f6b2cda5f3323aba29704","signature":"1dd9869e93b1513fff856afa6c5b2ef15084fed83c8bd184ec9d01fdf42c4fc7"},{"version":"082af0b1e17f69bd203bbce883eadf32d26c94d07ee5122e089c84dbf3e58b22","signature":"e32e18d297b2dc1e259146e990885e294a8771ce4b3e5857e480086974470366"},{"version":"8e3dc4401198d5d55dff60a0b320d4f3e2d871b57592e017234838c9651462f5","signature":"40ac0dda7fa584583d6031a02dbe76fa0698aaac18444223c095836af3572864"},{"version":"3c072b31f6bd05f9a2525fcacfc89e0576f1168969debed2234383b1d8d9e963","signature":"1cb06002884cfbad15425946e1dafe007ffd0aabc30683b50bf3c3c67c26d69a"},{"version":"3c737ac2df57065762293fd9def7171480d408f3fff4cdb3f30d74d73fe15a6f","signature":"16b9bc9da52264b474c924705217f7a56ba4413ce0f3fc00802de9f83af38f10"},{"version":"0119ed8feccccb0db490c927ed80166b242cfba17761a3cec0c7837077b19493","signature":"76c9991d421328991fbf088c672c7ef9172ba53dfe67cb155304709d92862780"},{"version":"726f20fbabd1658e507336a5ca954d6d959fc49e87b2dbaa2c2cbc8c1ff68a1a","signature":"4ec80cb000a1c74863a81982e9ce2de67aa8876afd24414d7f55265f90caa1e4"},"293763a47fc129e91bb84ce8d73f1f64a40e7fcacbc06d0f7922456b4914ea48",{"version":"4a08b323373b8dad94fd33a981bbf98f58b0e9de562a2f0fc71cb92c68be50ff","signature":"5b668f15b7c974397674716371331c6ac2263260665e691e2865c6091c672953"},{"version":"c7f731728b394c681e84fb163e0f2cc852d83a023b64eca76f621fe218fd01b5","signature":"4fa1199be1cd4a9e82c569eda75ddfc56bee44b653f3cdf47c17274d39a2dc18"},{"version":"9288871ef05464f561754d62e01b6a2165754a2605afaaeb30f99a3f7577d5ba","signature":"da032b18b9aed57abf4cdba5ac86e36d7a743761590b7ead264f224a9eec2e18"},{"version":"38e01364ca285f3539ab80bae1ffde5f10d2f3142dc23aae2fddb3d375083ed1","signature":"ca4396823756e0085a2138f85e6dae575f1779bb0106c4725021780b5bcf1ca2"},{"version":"4b978fb00918e648309b38e6754c6723766a69b27ead100b4b07a5a45b6316ca","signature":"0e355dad341f5d701110f1f97d907323a5781ba678425770b2626db20faede03"},{"version":"d7decf9c92730a3b256757388b895074bb74dda7a00cd013dd3ba45857256df1","signature":"84d891248e86d34153ade4de4d0d7de243b7407f12eb5bd6534c9be6c4c01c2a"},{"version":"7b346701c11c0a9a107d375841a585cf0bd6aecaa5c1c5a85b33fd63d3a4af65","signature":"9eb1bd14d17b72c3544c6a9f640da411552b9ede4256e428276afcba44d3d2f7"},"7df53cd57edb7210059dd215d5dcd79163aed9bca881b808d42893890a2653c2",{"version":"4db3294dfb177a965099e5d780de6df1688cf7fc3e9304d7dbd032f8c686c4f8","signature":"f84f49a546023754e6854631e0235b803726c3257f001d07566f1b19c951ac8d"},{"version":"9255e710056b12c603f6b500593c2a28a9bd2fc77eca5665bec5987fa3ff9c55","signature":"7efd9469fb51e6e99aebb05600b4bedf6df9b11193fc313b80206c97c2e8e97b"},{"version":"cfc42ee6e8069ead478ec36b19d079d3f357e480c4199fc46b57a696a878f054","signature":"1dd4bf08a6ff904fd00d2b81ed0ffca2d5c0191c8e97ff0ff7428b2aa0b305d9"},{"version":"abd36d79a2dd2e6c3cdc021338fe96df709287928aa9c3b498b708c635a11a8f","signature":"b83adfd70293b2ab84964e5899500f57faf08d5478d031565bcccc38262c9844"},{"version":"d15518b2bd6770c5601df83d0921a9bd6eac3400c9f037bcd36d5d9f70ef57a5","signature":"8d79cfbf2345cc950d77c90358a4daed5050047fd2a16df7d5b9b23172001c8c"},{"version":"cba15a6847f05b552714ff906476f03fc037fb1069144133c675ddd5ecfb6285","signature":"e2db6fe915f8d1ad12b9ca1412a42115099a0e3e74d9d1ec8edb9fdeef95dfed"},{"version":"c9cee63529a0d46c40ad82526c65465b969a50680ec91675e3340a522af3be57","signature":"15c30d7c95a41457c54b45fa5b12b86be94f48bfd81f0016b77b6b5c957d0bf6"},{"version":"e998b4c8e2601f7d88d17ce72468d8d751004d46a63f1be1b3b32f0d39e2c1e7","signature":"6c0b014afd06d447f933504362479744ede0e901aa71122bf85525c8f67d3d27"},{"version":"65183754515625a1352de90beef533a88da5498eeff6cc932ab617a1c81ee0fd","signature":"07ea13e6143d9db59ca71f7dc144860f78862ef5db976b1d7116c0a4cfd019fa"},{"version":"ea96ff4b668e1a8ee18aaf7b8cc602786fe1acbc0ea2f4a09e79efe7d332f3c5","signature":"66a26a57252c234722ec81c088f5c2ea2c4cc6d24926d7cb32933e8f2e687bd1"},{"version":"4176054ae0dca65c85ed9058c70c7c867fe825a0445713015728f84fb78b4bbc","signature":"6e8c1fc17ce0069d7ed34f3b44388e1f9e7e2eb0a6c043c9ed64266c0c58e755"},"eb9fcbd5ed6e35ebe41938ab0ef794980954d775a7418a51a6a3fe613e758cef",{"version":"b0278998138f3fa99b28d4ce9ee19595f559b8cdcf5723adf61972d1ffb47fa2","signature":"ff81aa571102e75690e3b2f2b55c27957b9c1ba940b7dc0e1aec0bf2a1ad1a7d"},{"version":"59d45378a706804c049f522356dd51e738645112bcdf0d65ed81b5fad87ad110","signature":"bb266367fd8b172f27fac86c9461f7b7d9429810948a8f9aaa24393b71619cf0"},{"version":"1b64e6cc251ac5bda31e8f2210194ce4457184a57fdbc1b84e286ba613e8833b","signature":"719b70978b41f7858baf4fbe136335c9049633b1eefd026fae067e9b81adea68"},{"version":"e0f5bc7bee288a3a0ff40c55dcb459b547e93dad6d4adbd02a9776418305dbbb","signature":"d4e569eb298b724398e2e262dca6bec5f36aa39521e824222aa6800c841564fc"},{"version":"bbbe5a3cb3fa92095a701f9581a2e891183c82ca6f4d7c18dce9daee995ba8b9","signature":"094c1bc3608014d58166a4c54e3a07b6c13b51e8918578e0113356890c4d7006"},{"version":"872561590ac304bee73e6a239af569178848cece41ca42d23516e0d6b13a2947","signature":"54a13a6dee8835cc2ae6070cd06cda93c556e5cea3cc4739667f7b9b7d28afb4"},{"version":"518a0a824cbe057fdc4792bea75893ccda76e587be851e9c1285f899f7c8155e","signature":"bb9a658751b14266dd44c14880b3a88e703d5aa33bfc835b7fe5e15c6bfe8c53"},{"version":"35588c2eaa7bcd64be228f0fad4a66eec17e6cb35d1ff6dc07d81002e52193f3","signature":"11b3f150c36bb10bc2485023274e21a2f80960110d2e75c1f1adf412c4a11e25"},{"version":"6645c77e7a25a1d3955530698c80b5a2e7eef4f2905027056eb68a3fa83429dd","signature":"2cbad32a49f9543714137026017fd8c4c0ddf2485546dec2bf9b2b85e75b7fad"},{"version":"a40eb90131d13d557112f3ef4f947b7ebb5a18f0a4bfdf16c201918778eda957","signature":"787af5e503e2bb15c94f7bfd7ea0c001a58db852c6cc02fa9207c03a889a9bbb"},{"version":"916b7163b64e56a34a2fa5fce4ffc6df68e214d432ac186b3d7928773937a3ff","signature":"83bbb45da54037868218a9bee07a5ec5268dd8f1ed07e7ff62fe21fd7529ac6f"},{"version":"79c42de5e0856b63ebbd6b34c30a5dba4f89bdd35c9b82d549e19b8bb8007e2b","signature":"ebaa53574ef76c44d3f3fc66672ff18aa1813f3b8a102939a817fe2ed0a58186"},{"version":"f3eb856d4799043648dcd2c9a683d2800b0a9a3512e2b1603f2e39a579d9ab4d","signature":"e60896b03941f61870abdb18875f1966dc918e8b10b6bcdebdc795a21a400e54"},{"version":"6a44003f64aaba4ee6328a6a22b0f4df762bb3102aaa857280e8f672dd85104a","signature":"eada5aa6ad2d33d90d3ed5721cf667f1bc1cdfd6cf61ba9d2d7462dd70f12857"},{"version":"dc48ec65a1e29fbb57169580a0a6656d3180fbe2ceedbeb2391834acbd2fe401","signature":"63a958f66b83285a17a62aab5a5d9f99b47dafde5b37268e118b8ce83fb0a32c"},{"version":"0b4fe0a48dec9c00effd2064e70630e8ed48851bb81c14cfa184168d9e95cc2a","signature":"ad30da9ff29f95426cf843b26f835134363bdfbe10d1d99e7073f4ec65ee05d5"},{"version":"cd16a89f2a8265a3fd089b784e1d5c1d94ecceaf2ce36c1973031f8f0ef90c57","signature":"6f9e626b672b5e24f20aec40cab4f8ef747197013ad8f6efb3420397825925a8"},{"version":"66ad60f770df00a44db9ff5e1c8ee3e82c908eadc97cf5f5d8f04856d1c39cf1","signature":"4820df7ffa7e05075ff4ccc4fd290df4af6e2687c08cf86cc5c752c3999aca4c"},{"version":"11613bd7841ee8ece4a2db886d98d99d0e90a1d761860849c250558f25a1b412","signature":"1c23251899044d86a918aed60090c2b6fe6b92394b19c460f2b40611602c4178"},{"version":"32fdea5fcab4b221102721f9aed8dd0be0a6dd4d71dd34163f5d59f4a93218c5","signature":"2e8e1c8c32b16added38e9a544961885dc2dd1207363efd54860dcd38ea83c02"},{"version":"e487c468d989801d79932236a378ac23f480fdb7eaed6b1e627cca2b6f8167c3","signature":"bdfe71b8b579945b8fb06d7895b3552d29970bae3bd635659214ae2196ef8bdf"},"4dbdb788957e25092daec0cb60c9f48a310c36f29115a64834401946b68e28ab",{"version":"28b5a4804e60219b59d1df606113deb0a46a44f2192c0daedcec63b11c8ca6d1","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","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":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"392eadc2af403dd10b4debfbc655c089a7fa6a9750caeb770cfb30051e55e848","affectsGlobalScope":true},"b67f9c5d42e7770ddf8b6d1747b531275c44617e8071d2602a2cffd2932ad95e","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"c48c503c6b3f63baf18257e9a87559b5602a4e960107c762586d2a6a62b64a18","affectsGlobalScope":true},"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","3bb6e21a9f30417c0a059e240b3f8f70c8af9c4cb6f2fd1bc2db594c647e285f","7483ef24249f6a3e24eb3d8136ec7fe0633cd6f8ffe752e2a8d99412aff35bb7","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"1493cc4d72bfaabe2ac13e987d026a5fc99a816f6289bfca7192834a396205cf","affectsGlobalScope":true},"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"1d4d78c8b23c9ddaaaa49485e6adc2ec01086dfe5d8d4d36ca4cdc98d2f7e74a","affectsGlobalScope":true},{"version":"44fc16356b81c0463cc7d7b2b35dcf324d8144136f5bc5ce73ced86f2b3475b5","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"abe61b580e030f1ca3ee548c8fd7b40fc686a97a056d5d1481f34c39c637345f","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true},"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","f7163a5d37d21f636f6a5cd1c064ce95fada21917859a64b6cc49a8b6fd5c1a8","720f5d028d71bc22ed4a5311a6ea884329db475d994f805ea86470111eccc1a1",{"version":"af674bd72a6717a27e95dcc3eea6522f46596da680f30c9fcfeb3ec425a4ef00","affectsGlobalScope":true},{"version":"afd2ed73507978c0d5a7f43faa97005b5dca68b33a2940301f9437b847ff806f","affectsGlobalScope":true},{"version":"9603687f2c76dc11c02cca33e4b6672a8942934109f727a619feef030d24bd4b","affectsGlobalScope":true},"7f33db341488580a55f30ecfdf04e70c8312fd26fc2692903c7186217ae34eff",{"version":"86190969544f30ec0317ff3168f29d60f41c0cd9e2af695d1b2cad07ae3b08ab","affectsGlobalScope":true},{"version":"2b8af6e8cf44313406800b820bffc49e83a8ec4598772db25954d03a86c96818","affectsGlobalScope":true},"6813c4ebad2ed9fd49be7805c4084cbbc2d484cca1dfafc6a8a196689b5d476a","965984634a4c933d7178f1e6f6e4e0a83560eee5d187c90d9e5a5738d0391a34",{"version":"d2e66d9477edaa0e4dea79d699f0855a5a7419915da740e28fbfdb322c6a60a6","affectsGlobalScope":true},{"version":"ca69bbf884a17e7a485bb4fcd129386874050916b275e414af14b2170b4ea728","affectsGlobalScope":true},"b52c121cd491cfdbea04c3a77d23e193c23cb411e7598a04ba13a4592842fe2f"],"root":[123,124],"options":{"allowSyntheticDefaultImports":true,"alwaysStrict":true,"declaration":true,"module":99,"noImplicitAny":true,"noImplicitThis":true,"outDir":"./","skipLibCheck":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":99},"fileIdsList":[[125,215,223],[160,215,223],[161,166,195,215,223],[162,167,173,174,181,192,203,215,223],[162,163,173,181,215,223],[164,204,215,223],[165,166,174,182,215,223],[166,192,200,215,223],[167,169,173,181,215,223],[160,168,215,223],[169,170,215,223],[173,215,223],[171,173,215,223],[160,173,215,223],[173,174,175,192,203,215,223],[173,174,175,188,192,195,215,216,223],[158,161,208,215,223],[215,223],[169,173,176,181,192,203,215,223],[173,174,176,177,181,192,200,203,215,223],[176,178,192,200,203,215,223],[125,126,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,215,223],[173,179,215,223],[180,203,208,215,223],[169,173,181,192,215,223],[182,215,223],[183,215,223],[160,184,215,223],[181,182,185,202,208,215,223],[186,215,223],[187,215,223],[173,188,189,215,223],[188,190,204,206,215,223],[161,173,192,193,194,195,215,223],[161,192,194,215,223],[192,193,215,223],[195,215,223],[196,215,223],[160,192,215,223],[173,198,199,215,223],[198,199,215,223],[166,181,192,200,215,216,223],[201,215,223],[181,202,215,223],[161,176,187,203,215,223],[166,204,215,223],[192,205,215,223],[180,206,215,223],[207,215,223],[161,166,173,175,184,192,203,206,208,215,223],[192,209,215,223],[173,176,178,192,200,203,209,211,215,216,223],[166,200,204,216,223],[215],[158,215,223],[158,166,184,192,195,204,208,212,213,215,223],[211,212,213,214,215,216,217,218,219,220,221,222,223],[175,200,215,223],[215,218,223],[135,139,203,215,223],[135,192,203,215,223],[130,215,223],[132,135,200,203,215,216,223],[181,200,215,216,223],[211,215,223],[130,211,215,223],[132,135,181,203,215,223],[127,128,131,134,161,173,192,203,215,223],[127,133,215,223],[131,135,161,195,203,211,215,223],[161,211,215,223],[151,161,211,215,223],[129,130,211,215,223],[135,215,223],[129,130,131,132,133,134,135,136,137,139,140,141,142,143,144,145,146,147,148,149,150,152,153,154,155,156,157,215,223],[135,142,143,215,223],[133,135,143,144,215,223],[134,215,223],[127,130,135,215,223],[135,139,143,144,215,223],[139,215,223],[133,135,138,203,215,223],[127,132,133,135,139,142,215,223],[161,192,215,223],[130,135,151,161,208,211,215,223],[123,215,223],[82,83,89,215,223],[75,77,215,223],[75,215,223],[75,76,79,80,215,223],[74,75,77,78,215,223],[74,215,223],[77,78,215,223],[74,78,81,84,85,86,87,88,215,223],[77,215,223],[74,77,85,86,215,223],[82,83,89,90,101,120,121,122,215,223],[91,215,223],[89,93,215,223],[77,91,92,93,94,95,96,97,99,100,215,223],[98,215,223],[88,95,215,223],[97,120,215,223],[89,98,101,215,223],[82,98,101,215,223],[101,215,223],[98,101,215,223],[82,89,98,215,223],[98,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,215,223],[89,101,215,223],[75,98,101,215,223],[90,215,223],[90,120,215,223],[81,82,215,223],[83],[89],[74],[91],[98],[90,98,109,116,117,120],[98,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119],[90],[90,120],[81,82]],"referencedMap":[[125,1],[126,1],[160,2],[161,3],[162,4],[163,5],[164,6],[165,7],[166,8],[167,9],[168,10],[169,11],[170,11],[172,12],[171,13],[173,14],[174,15],[175,16],[159,17],[210,18],[176,19],[177,20],[178,21],[211,22],[179,23],[180,24],[181,25],[182,26],[183,27],[184,28],[185,29],[186,30],[187,31],[188,32],[189,32],[190,33],[191,18],[192,34],[194,35],[193,36],[195,37],[196,38],[197,39],[198,40],[199,41],[200,42],[201,43],[202,44],[203,45],[204,46],[205,47],[206,48],[207,49],[208,50],[209,51],[212,52],[215,53],[223,54],[213,55],[217,18],[214,56],[219,18],[224,57],[220,18],[216,58],[221,18],[218,59],[222,18],[71,18],[72,18],[14,18],[12,18],[13,18],[18,18],[17,18],[2,18],[19,18],[20,18],[21,18],[22,18],[23,18],[24,18],[25,18],[26,18],[3,18],[27,18],[4,18],[28,18],[32,18],[29,18],[30,18],[31,18],[33,18],[34,18],[35,18],[5,18],[36,18],[37,18],[38,18],[39,18],[6,18],[43,18],[40,18],[41,18],[42,18],[44,18],[7,18],[45,18],[50,18],[51,18],[46,18],[47,18],[48,18],[49,18],[8,18],[55,18],[52,18],[53,18],[54,18],[56,18],[9,18],[57,18],[58,18],[59,18],[62,18],[60,18],[61,18],[63,18],[64,18],[10,18],[1,18],[65,18],[11,18],[69,18],[67,18],[73,18],[66,18],[70,18],[68,18],[16,18],[15,18],[142,60],[149,61],[141,60],[156,62],[133,63],[132,64],[155,65],[150,66],[153,67],[135,68],[134,69],[130,70],[129,71],[152,72],[131,73],[136,74],[137,18],[140,74],[127,18],[158,75],[157,74],[144,76],[145,77],[147,78],[143,79],[146,80],[151,65],[138,81],[139,82],[148,83],[128,84],[154,85],[124,86],[90,87],[82,18],[80,88],[76,89],[81,90],[79,91],[75,92],[84,18],[85,93],[89,94],[78,95],[77,92],[86,92],[88,93],[74,18],[87,96],[123,97],[92,98],[94,99],[101,100],[99,101],[93,18],[95,98],[96,18],[100,102],[91,18],[97,18],[122,103],[106,104],[107,105],[102,106],[118,107],[103,104],[104,108],[120,109],[115,110],[105,107],[114,110],[108,106],[109,111],[110,107],[111,107],[112,101],[113,110],[119,106],[117,106],[98,112],[116,106],[121,113],[83,114]],"exportedModulesMap":[[125,1],[126,1],[160,2],[161,3],[162,4],[163,5],[164,6],[165,7],[166,8],[167,9],[168,10],[169,11],[170,11],[172,12],[171,13],[173,14],[174,15],[175,16],[159,17],[210,18],[176,19],[177,20],[178,21],[211,22],[179,23],[180,24],[181,25],[182,26],[183,27],[184,28],[185,29],[186,30],[187,31],[188,32],[189,32],[190,33],[191,18],[192,34],[194,35],[193,36],[195,37],[196,38],[197,39],[198,40],[199,41],[200,42],[201,43],[202,44],[203,45],[204,46],[205,47],[206,48],[207,49],[208,50],[209,51],[212,52],[215,53],[223,54],[213,55],[217,18],[214,56],[219,18],[224,57],[220,18],[216,58],[221,18],[218,59],[222,18],[71,18],[72,18],[14,18],[12,18],[13,18],[18,18],[17,18],[2,18],[19,18],[20,18],[21,18],[22,18],[23,18],[24,18],[25,18],[26,18],[3,18],[27,18],[4,18],[28,18],[32,18],[29,18],[30,18],[31,18],[33,18],[34,18],[35,18],[5,18],[36,18],[37,18],[38,18],[39,18],[6,18],[43,18],[40,18],[41,18],[42,18],[44,18],[7,18],[45,18],[50,18],[51,18],[46,18],[47,18],[48,18],[49,18],[8,18],[55,18],[52,18],[53,18],[54,18],[56,18],[9,18],[57,18],[58,18],[59,18],[62,18],[60,18],[61,18],[63,18],[64,18],[10,18],[1,18],[65,18],[11,18],[69,18],[67,18],[73,18],[66,18],[70,18],[68,18],[16,18],[15,18],[142,60],[149,61],[141,60],[156,62],[133,63],[132,64],[155,65],[150,66],[153,67],[135,68],[134,69],[130,70],[129,71],[152,72],[131,73],[136,74],[137,18],[140,74],[127,18],[158,75],[157,74],[144,76],[145,77],[147,78],[143,79],[146,80],[151,65],[138,81],[139,82],[148,83],[128,84],[154,85],[90,115],[80,116],[81,90],[75,117],[85,117],[89,94],[77,117],[86,117],[88,117],[87,117],[123,97],[92,118],[101,100],[99,119],[95,118],[122,120],[106,119],[107,119],[102,119],[118,119],[103,119],[104,119],[120,121],[115,119],[105,119],[114,119],[108,119],[109,119],[110,119],[111,119],[112,119],[113,119],[119,119],[117,119],[98,122],[116,119],[121,123],[83,124]],"semanticDiagnosticsPerFile":[125,126,160,161,162,163,164,165,166,167,168,169,170,172,171,173,174,175,159,210,176,177,178,211,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,193,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,212,215,223,213,217,214,219,224,220,216,221,218,222,71,72,14,12,13,18,17,2,19,20,21,22,23,24,25,26,3,27,4,28,32,29,30,31,33,34,35,5,36,37,38,39,6,43,40,41,42,44,7,45,50,51,46,47,48,49,8,55,52,53,54,56,9,57,58,59,62,60,61,63,64,10,1,65,11,69,67,73,66,70,68,16,15,142,149,141,156,133,132,155,150,153,135,134,130,129,152,131,136,137,140,127,158,157,144,145,147,143,146,151,138,139,148,128,154,124,90,82,80,76,81,79,75,84,85,89,78,77,86,88,74,87,123,92,94,101,99,93,95,96,100,91,97,122,106,107,102,118,103,104,120,115,105,114,108,109,110,111,112,113,119,117,98,116,121,83]},"version":"5.4.5"}
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.object.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.esnext.full.d.ts","../src/dict/gobj.ts","../src/dict/types.ts","../src/dict/lib.ts","../src/dict/iwords.ts","../src/dict/iawords.ts","../src/dict/phonetic.ts","../src/dict/wordlist.ts","../src/dict/softening.ts","../src/dict/alphabets/types.ts","../src/dict/alphabets/cyrillic.ts","../src/dict/alphabets/latin.ts","../src/dict/alphabets/arabic.ts","../src/dict/alphabets/index.ts","../src/dict/index.ts","../src/types.ts","../src/constants.ts","../src/wrappers.ts","../src/config.ts","../src/lib/types.ts","../src/lib/after-tarask.ts","../src/lib/replace-g.ts","../src/lib/highlight-diff.ts","../src/lib/replace-with-dict.ts","../src/lib/restore-case.ts","../src/steps/types.ts","../src/lib/mutating-step.ts","../src/lib/soften.ts","../src/lib/index.ts","../src/steps/convert-alphabet.ts","../src/steps/highlight-diff.ts","../src/steps/i-to-j.ts","../src/steps/join-splitted.ts","../src/steps/apply-g.ts","../src/steps/apply-variations.ts","../src/steps/prepare.ts","../src/steps/resolve-syntax.ts","../src/steps/restore-case.ts","../src/steps/store-splitted-abc-converted-orig.ts","../src/steps/store-splitted-text.ts","../src/steps/taraskevize.ts","../src/steps/phonetize.ts","../src/steps/iotacize-ji.ts","../src/steps/whitespaces.ts","../src/steps/trim.ts","../src/steps/finalize.ts","../src/steps/to-lower-case.ts","../src/steps/index.ts","../src/tarask.ts","../src/pipelines.ts","../src/index.ts","../src/bin.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.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/sea.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","../node_modules/@types/ws/index.d.ts","../node_modules/bun-types/fetch.d.ts","../node_modules/bun-types/globals.d.ts","../node_modules/bun-types/bun.d.ts","../node_modules/bun-types/overrides.d.ts","../node_modules/bun-types/ffi.d.ts","../node_modules/bun-types/test.d.ts","../node_modules/bun-types/html-rewriter.d.ts","../node_modules/bun-types/jsc.d.ts","../node_modules/bun-types/sqlite.d.ts","../node_modules/bun-types/wasm.d.ts","../node_modules/bun-types/deprecated.d.ts","../node_modules/bun-types/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","886e50ef125efb7878f744e86908884c0133e7a6d9d80013f421b0cd8fb2af94",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"73e370058f82add1fdbc78ef3d1aab110108f2d5d9c857cb55d3361982347ace","affectsGlobalScope":true},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"bde31fd423cd93b0eff97197a3f66df7c93e8c0c335cbeb113b7ff1ac35c23f4",{"version":"9288871ef05464f561754d62e01b6a2165754a2605afaaeb30f99a3f7577d5ba","signature":"da032b18b9aed57abf4cdba5ac86e36d7a743761590b7ead264f224a9eec2e18"},{"version":"444dcc136024f27c3e2e452b3065003a3eb21d91552f6b2cda5f3323aba29704","signature":"1dd9869e93b1513fff856afa6c5b2ef15084fed83c8bd184ec9d01fdf42c4fc7"},{"version":"3c072b31f6bd05f9a2525fcacfc89e0576f1168969debed2234383b1d8d9e963","signature":"1cb06002884cfbad15425946e1dafe007ffd0aabc30683b50bf3c3c67c26d69a"},{"version":"3c737ac2df57065762293fd9def7171480d408f3fff4cdb3f30d74d73fe15a6f","signature":"16b9bc9da52264b474c924705217f7a56ba4413ce0f3fc00802de9f83af38f10"},{"version":"38e01364ca285f3539ab80bae1ffde5f10d2f3142dc23aae2fddb3d375083ed1","signature":"ca4396823756e0085a2138f85e6dae575f1779bb0106c4725021780b5bcf1ca2"},{"version":"4b978fb00918e648309b38e6754c6723766a69b27ead100b4b07a5a45b6316ca","signature":"0e355dad341f5d701110f1f97d907323a5781ba678425770b2626db20faede03"},{"version":"d7decf9c92730a3b256757388b895074bb74dda7a00cd013dd3ba45857256df1","signature":"84d891248e86d34153ade4de4d0d7de243b7407f12eb5bd6534c9be6c4c01c2a"},{"version":"7b346701c11c0a9a107d375841a585cf0bd6aecaa5c1c5a85b33fd63d3a4af65","signature":"9eb1bd14d17b72c3544c6a9f640da411552b9ede4256e428276afcba44d3d2f7"},{"version":"082af0b1e17f69bd203bbce883eadf32d26c94d07ee5122e089c84dbf3e58b22","signature":"e32e18d297b2dc1e259146e990885e294a8771ce4b3e5857e480086974470366"},{"version":"8e3dc4401198d5d55dff60a0b320d4f3e2d871b57592e017234838c9651462f5","signature":"40ac0dda7fa584583d6031a02dbe76fa0698aaac18444223c095836af3572864"},{"version":"0119ed8feccccb0db490c927ed80166b242cfba17761a3cec0c7837077b19493","signature":"76c9991d421328991fbf088c672c7ef9172ba53dfe67cb155304709d92862780"},{"version":"726f20fbabd1658e507336a5ca954d6d959fc49e87b2dbaa2c2cbc8c1ff68a1a","signature":"4ec80cb000a1c74863a81982e9ce2de67aa8876afd24414d7f55265f90caa1e4"},"293763a47fc129e91bb84ce8d73f1f64a40e7fcacbc06d0f7922456b4914ea48","7df53cd57edb7210059dd215d5dcd79163aed9bca881b808d42893890a2653c2",{"version":"eacd2afca9024eb74bc8a5ad35d2a27ca5767dacba7ec3b319ba997e5ad7529c","signature":"3f94f72c6908bb1eb3ebdd6a9e75b4354a5b9cc10780dbc35b2f2773fc21cde2"},{"version":"aac9cfb4d1fe7e1944de0643813767f6a53f90da6d18339e73b0ddb533aac6e8","signature":"21c15b8cf29aed21dc113541bb9f034fcc673be396d96930822b49dfb0a6bac5"},{"version":"dcf3e131f34dda9d0e11be0fdd0f82b90ec915daf6410758c94c7121133af786","signature":"45d3a8ce8fee0c41b3a6cb96cbc0a708ba8ba14b0e58f671c46ad1a2c45b1d46"},{"version":"5554db22f9b1f2371e8a29ec9cd8df0d99be9098e0edaddd3c414d5e4a9132d1","signature":"d2d7021e11426768aebc13230bbfa496e8e9af1f74f58e82449078e22a605599"},{"version":"a6d66f787db61a2006822cf1f5400314f72c24f729e3ced47eebfa8779f22c28","signature":"7efd9469fb51e6e99aebb05600b4bedf6df9b11193fc313b80206c97c2e8e97b"},{"version":"cfc42ee6e8069ead478ec36b19d079d3f357e480c4199fc46b57a696a878f054","signature":"1dd4bf08a6ff904fd00d2b81ed0ffca2d5c0191c8e97ff0ff7428b2aa0b305d9"},{"version":"abd36d79a2dd2e6c3cdc021338fe96df709287928aa9c3b498b708c635a11a8f","signature":"b83adfd70293b2ab84964e5899500f57faf08d5478d031565bcccc38262c9844"},{"version":"d15518b2bd6770c5601df83d0921a9bd6eac3400c9f037bcd36d5d9f70ef57a5","signature":"8d79cfbf2345cc950d77c90358a4daed5050047fd2a16df7d5b9b23172001c8c"},{"version":"cba15a6847f05b552714ff906476f03fc037fb1069144133c675ddd5ecfb6285","signature":"e2db6fe915f8d1ad12b9ca1412a42115099a0e3e74d9d1ec8edb9fdeef95dfed"},{"version":"e5d61cc64e33c2bd41e30fabe75a7b004ec9788361c4d94ccee89d290a280b6a","signature":"15c30d7c95a41457c54b45fa5b12b86be94f48bfd81f0016b77b6b5c957d0bf6"},{"version":"65183754515625a1352de90beef533a88da5498eeff6cc932ab617a1c81ee0fd","signature":"07ea13e6143d9db59ca71f7dc144860f78862ef5db976b1d7116c0a4cfd019fa"},{"version":"ea96ff4b668e1a8ee18aaf7b8cc602786fe1acbc0ea2f4a09e79efe7d332f3c5","signature":"66a26a57252c234722ec81c088f5c2ea2c4cc6d24926d7cb32933e8f2e687bd1"},{"version":"4176054ae0dca65c85ed9058c70c7c867fe825a0445713015728f84fb78b4bbc","signature":"6e8c1fc17ce0069d7ed34f3b44388e1f9e7e2eb0a6c043c9ed64266c0c58e755"},"505ccda7695a887e71f1816e9e9032245f6aa283b6a2c82a0363d5b2daf994d1",{"version":"8c76779211f8daca89f82f4d5626a68cb418a336b9c53c3f1406ccb2b1278d24","signature":"ff81aa571102e75690e3b2f2b55c27957b9c1ba940b7dc0e1aec0bf2a1ad1a7d"},{"version":"1e2b3069d610401fd44af19458c9e4fa9df78117ab6ca151be00af00da209947","signature":"3a214d3e2997617cdd0e8906d65948ea177b9ea53a9a8ad3f85c46171b1abcaa"},{"version":"a09b5fdb5696d5c7f5cb12a61aa228cf66de01998ba0613136f355abe2796a1e","signature":"719b70978b41f7858baf4fbe136335c9049633b1eefd026fae067e9b81adea68"},{"version":"e0f5bc7bee288a3a0ff40c55dcb459b547e93dad6d4adbd02a9776418305dbbb","signature":"d4e569eb298b724398e2e262dca6bec5f36aa39521e824222aa6800c841564fc"},{"version":"9a82211f58010c28594a03933631a924c3e0b43246d57cf4b7e852c2b4d89c82","signature":"e8cbc14c31f41e0e330f28d55fd7206a7c20ac74ccfc387ad3b84e1c0e598c7d"},{"version":"847b681122024e74a6b9ffd139296fcadaadb28631b3bf4e4e0b1c216d4fb59f","signature":"736ca72b89721f041671fbfb32657c1d91d70892fa41ae8da4d960a91ee73489"},{"version":"518a0a824cbe057fdc4792bea75893ccda76e587be851e9c1285f899f7c8155e","signature":"bb9a658751b14266dd44c14880b3a88e703d5aa33bfc835b7fe5e15c6bfe8c53"},{"version":"9ac30f44e92462b68adbecd5cc0e9ed47951318c87f56f70c02375bf6914ac04","signature":"ce26d5f8ed079d6ee620bd7caee53292f0368ac88d69b75699559ed833cd6f89"},{"version":"e8299ca6adc8afa5711cb9096321bce8ef2581f08fef1c44f1fc54068936f684","signature":"2cbad32a49f9543714137026017fd8c4c0ddf2485546dec2bf9b2b85e75b7fad"},{"version":"d324f02359f3a2f82a52c210cb14059c378f6ac73ecc726e8a7705c2d86eb0c2","signature":"787af5e503e2bb15c94f7bfd7ea0c001a58db852c6cc02fa9207c03a889a9bbb"},{"version":"916b7163b64e56a34a2fa5fce4ffc6df68e214d432ac186b3d7928773937a3ff","signature":"83bbb45da54037868218a9bee07a5ec5268dd8f1ed07e7ff62fe21fd7529ac6f"},{"version":"79c42de5e0856b63ebbd6b34c30a5dba4f89bdd35c9b82d549e19b8bb8007e2b","signature":"ebaa53574ef76c44d3f3fc66672ff18aa1813f3b8a102939a817fe2ed0a58186"},{"version":"f3eb856d4799043648dcd2c9a683d2800b0a9a3512e2b1603f2e39a579d9ab4d","signature":"e60896b03941f61870abdb18875f1966dc918e8b10b6bcdebdc795a21a400e54"},{"version":"6a44003f64aaba4ee6328a6a22b0f4df762bb3102aaa857280e8f672dd85104a","signature":"eada5aa6ad2d33d90d3ed5721cf667f1bc1cdfd6cf61ba9d2d7462dd70f12857"},{"version":"dc48ec65a1e29fbb57169580a0a6656d3180fbe2ceedbeb2391834acbd2fe401","signature":"63a958f66b83285a17a62aab5a5d9f99b47dafde5b37268e118b8ce83fb0a32c"},{"version":"0b4fe0a48dec9c00effd2064e70630e8ed48851bb81c14cfa184168d9e95cc2a","signature":"ad30da9ff29f95426cf843b26f835134363bdfbe10d1d99e7073f4ec65ee05d5"},{"version":"3b06aa8d824468ef617e5b4b3a7639b709e950a7fc2aacaaa4dfe866e45d7175","signature":"17183542d301be27159c6a498d38ee43945c243fba44d188402d92cbe5cffae2"},{"version":"66ad60f770df00a44db9ff5e1c8ee3e82c908eadc97cf5f5d8f04856d1c39cf1","signature":"4820df7ffa7e05075ff4ccc4fd290df4af6e2687c08cf86cc5c752c3999aca4c"},{"version":"11613bd7841ee8ece4a2db886d98d99d0e90a1d761860849c250558f25a1b412","signature":"1c23251899044d86a918aed60090c2b6fe6b92394b19c460f2b40611602c4178"},{"version":"417b8920c58801147e5ec7f6dfc65f1426079828d4b658c76a4d27f0b3368780","signature":"1e576cd966c6633fedc8fb435cf627595d1bb8d4a67931c9ef4b2ecab0270985"},{"version":"1b9964b8ba138e9a9e2f63fd5d306777119f9ee3222517d1a8cb338a21bb2096","signature":"7fba656cb75d52a166dd5b302da9e48154b1ae01a628003c572b739bc395e2e3"},"6eaf2836ee3643e245c8e25bf9911d9c864095fb6a29debbf33367f769023cce",{"version":"12d8087943d952cabbf0fdc4501fe9b25f678c8e046669e1deb603f9d9cefbbc","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","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":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"392eadc2af403dd10b4debfbc655c089a7fa6a9750caeb770cfb30051e55e848","affectsGlobalScope":true},"b67f9c5d42e7770ddf8b6d1747b531275c44617e8071d2602a2cffd2932ad95e","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"c48c503c6b3f63baf18257e9a87559b5602a4e960107c762586d2a6a62b64a18","affectsGlobalScope":true},"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","3bb6e21a9f30417c0a059e240b3f8f70c8af9c4cb6f2fd1bc2db594c647e285f","7483ef24249f6a3e24eb3d8136ec7fe0633cd6f8ffe752e2a8d99412aff35bb7","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"1493cc4d72bfaabe2ac13e987d026a5fc99a816f6289bfca7192834a396205cf","affectsGlobalScope":true},"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"1d4d78c8b23c9ddaaaa49485e6adc2ec01086dfe5d8d4d36ca4cdc98d2f7e74a","affectsGlobalScope":true},{"version":"44fc16356b81c0463cc7d7b2b35dcf324d8144136f5bc5ce73ced86f2b3475b5","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"abe61b580e030f1ca3ee548c8fd7b40fc686a97a056d5d1481f34c39c637345f","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true},"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","f7163a5d37d21f636f6a5cd1c064ce95fada21917859a64b6cc49a8b6fd5c1a8","720f5d028d71bc22ed4a5311a6ea884329db475d994f805ea86470111eccc1a1",{"version":"af674bd72a6717a27e95dcc3eea6522f46596da680f30c9fcfeb3ec425a4ef00","affectsGlobalScope":true},{"version":"afd2ed73507978c0d5a7f43faa97005b5dca68b33a2940301f9437b847ff806f","affectsGlobalScope":true},{"version":"9603687f2c76dc11c02cca33e4b6672a8942934109f727a619feef030d24bd4b","affectsGlobalScope":true},"7f33db341488580a55f30ecfdf04e70c8312fd26fc2692903c7186217ae34eff",{"version":"86190969544f30ec0317ff3168f29d60f41c0cd9e2af695d1b2cad07ae3b08ab","affectsGlobalScope":true},{"version":"2b8af6e8cf44313406800b820bffc49e83a8ec4598772db25954d03a86c96818","affectsGlobalScope":true},"6813c4ebad2ed9fd49be7805c4084cbbc2d484cca1dfafc6a8a196689b5d476a","965984634a4c933d7178f1e6f6e4e0a83560eee5d187c90d9e5a5738d0391a34",{"version":"d2e66d9477edaa0e4dea79d699f0855a5a7419915da740e28fbfdb322c6a60a6","affectsGlobalScope":true},{"version":"ca69bbf884a17e7a485bb4fcd129386874050916b275e414af14b2170b4ea728","affectsGlobalScope":true},"b52c121cd491cfdbea04c3a77d23e193c23cb411e7598a04ba13a4592842fe2f"],"root":[123,124],"options":{"allowSyntheticDefaultImports":true,"alwaysStrict":true,"declaration":true,"module":99,"noImplicitAny":true,"noImplicitThis":true,"outDir":"./","skipLibCheck":true,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":99},"fileIdsList":[[125,215,223],[160,215,223],[161,166,195,215,223],[162,167,173,174,181,192,203,215,223],[162,163,173,181,215,223],[164,204,215,223],[165,166,174,182,215,223],[166,192,200,215,223],[167,169,173,181,215,223],[160,168,215,223],[169,170,215,223],[173,215,223],[171,173,215,223],[160,173,215,223],[173,174,175,192,203,215,223],[173,174,175,188,192,195,215,216,223],[158,161,208,215,223],[215,223],[169,173,176,181,192,203,215,223],[173,174,176,177,181,192,200,203,215,223],[176,178,192,200,203,215,223],[125,126,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,215,223],[173,179,215,223],[180,203,208,215,223],[169,173,181,192,215,223],[182,215,223],[183,215,223],[160,184,215,223],[181,182,185,202,208,215,223],[186,215,223],[187,215,223],[173,188,189,215,223],[188,190,204,206,215,223],[161,173,192,193,194,195,215,223],[161,192,194,215,223],[192,193,215,223],[195,215,223],[196,215,223],[160,192,215,223],[173,198,199,215,223],[198,199,215,223],[166,181,192,200,215,216,223],[201,215,223],[181,202,215,223],[161,176,187,203,215,223],[166,204,215,223],[192,205,215,223],[180,206,215,223],[207,215,223],[161,166,173,175,184,192,203,206,208,215,223],[192,209,215,223],[173,176,178,192,200,203,209,211,215,216,223],[166,200,204,216,223],[215],[158,215,223],[158,166,184,192,195,204,208,212,213,215,223],[211,212,213,214,215,216,217,218,219,220,221,222,223],[175,200,215,223],[215,218,223],[135,139,203,215,223],[135,192,203,215,223],[130,215,223],[132,135,200,203,215,216,223],[181,200,215,216,223],[211,215,223],[130,211,215,223],[132,135,181,203,215,223],[127,128,131,134,161,173,192,203,215,223],[127,133,215,223],[131,135,161,195,203,211,215,223],[161,211,215,223],[151,161,211,215,223],[129,130,211,215,223],[135,215,223],[129,130,131,132,133,134,135,136,137,139,140,141,142,143,144,145,146,147,148,149,150,152,153,154,155,156,157,215,223],[135,142,143,215,223],[133,135,143,144,215,223],[134,215,223],[127,130,135,215,223],[135,139,143,144,215,223],[139,215,223],[133,135,138,203,215,223],[127,132,133,135,139,142,215,223],[161,192,215,223],[130,135,151,161,208,211,215,223],[123,215,223],[86,87,88,89,90,215,223],[76,82,215,223],[82,215,223],[82,83,84,85,215,223],[75,76,77,82,215,223],[75,215,223],[76,77,215,223],[74,75,77,78,79,80,81,86,215,223],[76,215,223],[75,76,78,79,215,223],[87,89,90,91,101,120,121,122,215,223],[92,215,223],[87,94,215,223],[76,92,93,94,95,96,97,99,100,215,223],[98,215,223],[81,96,215,223],[120,215,223],[87,98,101,215,223],[90,101,215,223],[101,215,223],[87,89,98,215,223],[98,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,215,223],[87,101,215,223],[98,101,215,223],[82,98,101,215,223],[91,215,223],[91,120,215,223],[88,89,215,223],[87,88,90],[87],[75],[92],[98],[91,98,109,116,117,120],[98,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119],[91],[91,120],[88,89]],"referencedMap":[[125,1],[126,1],[160,2],[161,3],[162,4],[163,5],[164,6],[165,7],[166,8],[167,9],[168,10],[169,11],[170,11],[172,12],[171,13],[173,14],[174,15],[175,16],[159,17],[210,18],[176,19],[177,20],[178,21],[211,22],[179,23],[180,24],[181,25],[182,26],[183,27],[184,28],[185,29],[186,30],[187,31],[188,32],[189,32],[190,33],[191,18],[192,34],[194,35],[193,36],[195,37],[196,38],[197,39],[198,40],[199,41],[200,42],[201,43],[202,44],[203,45],[204,46],[205,47],[206,48],[207,49],[208,50],[209,51],[212,52],[215,53],[223,54],[213,55],[217,18],[214,56],[219,18],[224,57],[220,18],[216,58],[221,18],[218,59],[222,18],[71,18],[72,18],[14,18],[12,18],[13,18],[18,18],[17,18],[2,18],[19,18],[20,18],[21,18],[22,18],[23,18],[24,18],[25,18],[26,18],[3,18],[27,18],[4,18],[28,18],[32,18],[29,18],[30,18],[31,18],[33,18],[34,18],[35,18],[5,18],[36,18],[37,18],[38,18],[39,18],[6,18],[43,18],[40,18],[41,18],[42,18],[44,18],[7,18],[45,18],[50,18],[51,18],[46,18],[47,18],[48,18],[49,18],[8,18],[55,18],[52,18],[53,18],[54,18],[56,18],[9,18],[57,18],[58,18],[59,18],[62,18],[60,18],[61,18],[63,18],[64,18],[10,18],[1,18],[65,18],[11,18],[69,18],[67,18],[73,18],[66,18],[70,18],[68,18],[16,18],[15,18],[142,60],[149,61],[141,60],[156,62],[133,63],[132,64],[155,65],[150,66],[153,67],[135,68],[134,69],[130,70],[129,71],[152,72],[131,73],[136,74],[137,18],[140,74],[127,18],[158,75],[157,74],[144,76],[145,77],[147,78],[143,79],[146,80],[151,65],[138,81],[139,82],[148,83],[128,84],[154,85],[124,86],[91,87],[89,18],[85,88],[83,89],[86,90],[84,91],[82,92],[74,18],[78,93],[87,94],[77,95],[76,92],[79,92],[81,93],[75,18],[80,96],[123,97],[93,98],[95,99],[101,100],[99,101],[94,18],[96,98],[97,18],[100,102],[92,18],[122,103],[106,104],[107,105],[102,106],[118,106],[103,104],[104,107],[120,108],[115,109],[105,110],[114,109],[108,106],[109,111],[110,110],[111,110],[112,101],[113,109],[119,106],[117,106],[98,112],[116,106],[121,113],[88,18],[90,114]],"exportedModulesMap":[[125,1],[126,1],[160,2],[161,3],[162,4],[163,5],[164,6],[165,7],[166,8],[167,9],[168,10],[169,11],[170,11],[172,12],[171,13],[173,14],[174,15],[175,16],[159,17],[210,18],[176,19],[177,20],[178,21],[211,22],[179,23],[180,24],[181,25],[182,26],[183,27],[184,28],[185,29],[186,30],[187,31],[188,32],[189,32],[190,33],[191,18],[192,34],[194,35],[193,36],[195,37],[196,38],[197,39],[198,40],[199,41],[200,42],[201,43],[202,44],[203,45],[204,46],[205,47],[206,48],[207,49],[208,50],[209,51],[212,52],[215,53],[223,54],[213,55],[217,18],[214,56],[219,18],[224,57],[220,18],[216,58],[221,18],[218,59],[222,18],[71,18],[72,18],[14,18],[12,18],[13,18],[18,18],[17,18],[2,18],[19,18],[20,18],[21,18],[22,18],[23,18],[24,18],[25,18],[26,18],[3,18],[27,18],[4,18],[28,18],[32,18],[29,18],[30,18],[31,18],[33,18],[34,18],[35,18],[5,18],[36,18],[37,18],[38,18],[39,18],[6,18],[43,18],[40,18],[41,18],[42,18],[44,18],[7,18],[45,18],[50,18],[51,18],[46,18],[47,18],[48,18],[49,18],[8,18],[55,18],[52,18],[53,18],[54,18],[56,18],[9,18],[57,18],[58,18],[59,18],[62,18],[60,18],[61,18],[63,18],[64,18],[10,18],[1,18],[65,18],[11,18],[69,18],[67,18],[73,18],[66,18],[70,18],[68,18],[16,18],[15,18],[142,60],[149,61],[141,60],[156,62],[133,63],[132,64],[155,65],[150,66],[153,67],[135,68],[134,69],[130,70],[129,71],[152,72],[131,73],[136,74],[137,18],[140,74],[127,18],[158,75],[157,74],[144,76],[145,77],[147,78],[143,79],[146,80],[151,65],[138,81],[139,82],[148,83],[128,84],[154,85],[91,115],[85,116],[86,90],[82,117],[78,117],[87,94],[76,117],[79,117],[81,117],[80,117],[123,97],[93,118],[101,100],[99,119],[96,118],[122,120],[106,119],[107,119],[102,119],[118,119],[103,119],[104,119],[120,121],[115,119],[105,119],[114,119],[108,119],[109,119],[110,119],[111,119],[112,119],[113,119],[119,119],[117,119],[98,122],[116,119],[121,123],[90,124]],"semanticDiagnosticsPerFile":[125,126,160,161,162,163,164,165,166,167,168,169,170,172,171,173,174,175,159,210,176,177,178,211,179,180,181,182,183,184,185,186,187,188,189,190,191,192,194,193,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,212,215,223,213,217,214,219,224,220,216,221,218,222,71,72,14,12,13,18,17,2,19,20,21,22,23,24,25,26,3,27,4,28,32,29,30,31,33,34,35,5,36,37,38,39,6,43,40,41,42,44,7,45,50,51,46,47,48,49,8,55,52,53,54,56,9,57,58,59,62,60,61,63,64,10,1,65,11,69,67,73,66,70,68,16,15,142,149,141,156,133,132,155,150,153,135,134,130,129,152,131,136,137,140,127,158,157,144,145,147,143,146,151,138,139,148,128,154,124,91,89,85,83,86,84,82,74,78,87,77,76,79,81,75,80,123,93,95,101,99,94,96,97,100,92,122,106,107,102,118,103,104,120,115,105,114,108,109,110,111,112,113,119,117,98,116,121,88,90]},"version":"5.4.5"}
package/dist/types.d.ts CHANGED
@@ -1,73 +1,4 @@
1
- import type { Alphabet } from './dict/alphabets';
2
- import type { OptionJ, Variation } from './constants';
3
1
  export type PartialReadonly<T> = {
4
2
  readonly [P in keyof T]?: T[P];
5
3
  };
6
- export type TaraskOptions = {
7
- /**
8
- * Any object that implements the {@link Alphabet} interface.
9
- *
10
- * The set of defined alphabets can be found in {@link dicts.alphabets}.
11
- *
12
- * @default alphabets.cyrillic
13
- */
14
- abc: Alphabet;
15
- /**
16
- * | Value | When to replace `і`(`i`) by `й`(`j`) after vowels | Example |
17
- * | ----- | ------------------------------------------------- | ------------------------ |
18
- * | | | `яна і ён` |
19
- * | 0 | never | `яна і ён` |
20
- * | 1 | random | `яна і ён` or `яна й ён` |
21
- * | 2 | always | `яна й ён` |
22
- *
23
- * Has no effect with abc set to {@link dicts.alphabets.latinJi}.
24
- *
25
- * @default REPLACE_J.NEVER
26
- */
27
- j: OptionJ;
28
- /**
29
- * If set to false, may cause unwanted changes in acronyms.
30
- *
31
- * @default true
32
- */
33
- doEscapeCapitalized: boolean;
34
- };
35
- export type NonHtmlOptions = {
36
- /** @default false */
37
- ansiColors: boolean;
38
- /**
39
- * Do replace ґ(g) by г(h) in cyrillic alphabet?
40
- *
41
- * | Value | Example |
42
- * | ----- | ----------- |
43
- * | true | Ґвалт ґвалт |
44
- * | false | Гвалт гвалт |
45
- *
46
- * @default false
47
- */
48
- h: boolean;
49
- /**
50
- * | Value | Which variation is used if a part of word is variable | Example |
51
- * | ----- | ----------------------------------------------------- | ----------------- |
52
- * | | | Гродна |
53
- * | 0 | main | Гродна |
54
- * | 1 | first | Горадня |
55
- * | 2 | all | (Гродна\|Горадня) |
56
- *
57
- * @default VARIATION.ALL
58
- */
59
- variations: Variation;
60
- };
61
- export type HtmlOptions = {
62
- /**
63
- * Do replace `г`(`h`) by `ґ`(`g`) in cyrillic alphabet?
64
- *
65
- * | Value | Example |
66
- * | ----- | --------------------------------------- |
67
- * | true | `<tarH>г</tarH>валт <tarH>Г</tarH>валт` |
68
- * | false | `<tarH>ґ</tarH>валт <tarH>Ґ</tarH>валт` |
69
- *
70
- * @default false
71
- */
72
- g: boolean;
73
- };
4
+ export type ValueOf<T> = T[keyof T];
@@ -0,0 +1,30 @@
1
+ import { VARIATION } from './constants';
2
+ import { ValueOf } from './types';
3
+ type VariationWrappers = {
4
+ [p in ValueOf<typeof VARIATION>]: (content: string) => string;
5
+ };
6
+ export type WrapperDict = {
7
+ fix?: (content: string) => string;
8
+ variable?: VariationWrappers;
9
+ letterH?: (content: string) => string;
10
+ };
11
+ export declare const defaultVariationWrappers: {
12
+ 2: (content: string) => string;
13
+ 1: (content: string) => string;
14
+ 0: (content: string) => string;
15
+ };
16
+ export declare const htmlWrappers: {
17
+ fix: (content: string) => string;
18
+ variable: {
19
+ 2: (content: string) => string;
20
+ 1: (content: string) => string;
21
+ 0: (content: string) => string;
22
+ };
23
+ letterH: (content: string) => string;
24
+ };
25
+ export declare const ansiColorWrappers: {
26
+ fix: (content: string) => string;
27
+ variable: VariationWrappers;
28
+ letterH: (content: string) => string;
29
+ };
30
+ export {};
@@ -0,0 +1,34 @@
1
+ import { VARIATION } from './constants.js';
2
+ export const defaultVariationWrappers = {
3
+ [VARIATION.ALL]: (content) => content,
4
+ [VARIATION.FIRST]: (content) => /^[^|]*?\|([^|)]*)/.exec(content)[1],
5
+ [VARIATION.NO]: (content) => /^\(([^|]*)/.exec(content)[1],
6
+ };
7
+ export const htmlWrappers = {
8
+ fix: (content) => `<tarF>${content}</tarF>`,
9
+ variable: {
10
+ [VARIATION.ALL]: (content) => {
11
+ const [main, ...parts] = content.slice(1, -1).split('|');
12
+ return `<tarL data-l='${parts}'>${main}</tarL>`;
13
+ },
14
+ [VARIATION.FIRST]: (content) => {
15
+ const [first, main, ...parts] = content.slice(1, -1).split('|');
16
+ parts.push(first);
17
+ return `<tarL data-l='${parts}'>${main}</tarL>`;
18
+ },
19
+ [VARIATION.NO]: defaultVariationWrappers[VARIATION.NO],
20
+ },
21
+ letterH: (content) => `<tarH>${content}</tarH>`,
22
+ };
23
+ export const ansiColorWrappers = {
24
+ fix: (content) => `\x1b[32m${content}\x1b[0m`,
25
+ variable: (() => {
26
+ const wrappers = {};
27
+ for (const key in defaultVariationWrappers) {
28
+ const getPart = defaultVariationWrappers[key];
29
+ wrappers[key] = (content) => `\x1b[35m${getPart(content)}\x1b[0m`;
30
+ }
31
+ return wrappers;
32
+ })(),
33
+ letterH: (content) => `\x1b[35m${content}\x1b[0m`,
34
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taraskevizer",
3
- "version": "8.0.27",
3
+ "version": "9.0.1",
4
4
  "author": "GooseOb",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,8 +0,0 @@
1
- export declare const htmlWrappers: {
2
- fix: (content: string) => `<tarF>${string}</tarF>`;
3
- letterH: (content: string) => `<tarH>${string}</tarH>`;
4
- };
5
- export declare const ansiColorWrappers: {
6
- fix: (content: string) => string;
7
- variable: (content: string) => string;
8
- };
@@ -1,8 +0,0 @@
1
- export const htmlWrappers = {
2
- fix: (content) => `<tarF>${content}</tarF>`,
3
- letterH: (content) => `<tarH>${content}</tarH>`,
4
- };
5
- export const ansiColorWrappers = {
6
- fix: (content) => `\x1b[32m${content}\x1b[0m`,
7
- variable: (content) => `\x1b[35m${content}\x1b[0m`,
8
- };