hebrew-transliteration 2.3.1 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/README.md +103 -5
  2. package/dist/hebCharsTrans.d.ts.map +1 -0
  3. package/dist/hebCharsTrans.js +1 -0
  4. package/dist/hebCharsTrans.js.map +1 -0
  5. package/dist/index.d.ts.map +1 -0
  6. package/dist/index.js +1 -0
  7. package/dist/index.js.map +1 -0
  8. package/dist/mapChars.d.ts.map +1 -0
  9. package/dist/mapChars.js +1 -0
  10. package/dist/mapChars.js.map +1 -0
  11. package/dist/remove.d.ts.map +1 -0
  12. package/dist/remove.js +1 -0
  13. package/dist/remove.js.map +1 -0
  14. package/dist/rules.d.ts +27 -0
  15. package/dist/rules.d.ts.map +1 -0
  16. package/dist/rules.js +208 -118
  17. package/dist/rules.js.map +1 -0
  18. package/dist/schema.d.ts +356 -25
  19. package/dist/schema.d.ts.map +1 -0
  20. package/dist/schema.js +71 -66
  21. package/dist/schema.js.map +1 -0
  22. package/dist/schemas/brillAcademic.d.ts.map +1 -0
  23. package/dist/schemas/brillAcademic.js +4 -2
  24. package/dist/schemas/brillAcademic.js.map +1 -0
  25. package/dist/schemas/brillSimple.d.ts.map +1 -0
  26. package/dist/schemas/brillSimple.js +2 -0
  27. package/dist/schemas/brillSimple.js.map +1 -0
  28. package/dist/schemas/index.d.ts +2 -1
  29. package/dist/schemas/index.d.ts.map +1 -0
  30. package/dist/schemas/index.js +4 -1
  31. package/dist/schemas/index.js.map +1 -0
  32. package/dist/schemas/michiganClaremont.d.ts.map +1 -0
  33. package/dist/schemas/michiganClaremont.js +2 -0
  34. package/dist/schemas/michiganClaremont.js.map +1 -0
  35. package/dist/schemas/romaniote.d.ts +2 -0
  36. package/dist/schemas/romaniote.js +169 -0
  37. package/dist/schemas/romaniote.js.map +1 -0
  38. package/dist/schemas/sblAcademicSpirantization.d.ts.map +1 -0
  39. package/dist/schemas/sblAcademicSpirantization.js +2 -0
  40. package/dist/schemas/sblAcademicSpirantization.js.map +1 -0
  41. package/dist/schemas/sblSimple.d.ts.map +1 -0
  42. package/dist/schemas/sblSimple.js +2 -0
  43. package/dist/schemas/sblSimple.js.map +1 -0
  44. package/dist/schemas/tiberian.d.ts +2 -0
  45. package/dist/schemas/tiberian.js +215 -0
  46. package/dist/schemas/tiberian.js.map +1 -0
  47. package/dist/sequence.d.ts.map +1 -0
  48. package/dist/sequence.js +1 -0
  49. package/dist/sequence.js.map +1 -0
  50. package/dist/transliterate.d.ts.map +1 -0
  51. package/dist/transliterate.js +2 -1
  52. package/dist/transliterate.js.map +1 -0
  53. package/package.json +16 -13
package/dist/schema.d.ts CHANGED
@@ -1,8 +1,261 @@
1
+ import { Cluster } from "havarotjs/cluster";
1
2
  import { SylOpts } from "havarotjs/dist/text";
3
+ import { Syllable } from "havarotjs/syllable";
4
+ import { Word } from "havarotjs/word";
5
+ import { NameToCharMap } from "havarotjs/dist/utils/vowelMap";
6
+ interface HebrewFeature {
7
+ /**
8
+ * The Hebrew text — use consonants and vowels; do not use taamim
9
+ *
10
+ * The text is parsed as a Regex so special characters like `?` and `|` can be used
11
+ *
12
+ */
13
+ HEBREW: string | RegExp;
14
+ }
15
+ interface PassThrough {
16
+ /**
17
+ * if `true` passes the characters of the result of the `TRANSLITERATION` callback to the be mapped to the schema.
18
+ * If `TRANSLITERATION` is a string, this does nothing.
19
+ *
20
+ * @default
21
+ * true
22
+ *
23
+ * @description
24
+ * This is generally most useful when the callback does not transliterate the entire `FEATURE`
25
+ *
26
+ * @example
27
+ *
28
+ * ```js
29
+ * // with PASS_THROUGH true (or undefined), the rest of the characters are passed through
30
+ * // to regular mapping on the schema
31
+ * heb.transliterate("בְּרֵאשִׁ֖ית", {
32
+ * ADDITIONAL_FEATURES: [{
33
+ * HEBREW: "(?<![\u{05B1}-\u{05BB}\u{05C7}].*)\u{05B0}",
34
+ * FEATURE: "syllable",
35
+ * PASS_THROUGH: true,
36
+ * TRANSLITERATION: function (syllable, _hebrew, schema) {
37
+ * const next = syllable.next;
38
+ * const nextVowel = next.vowelName === "SHEVA" ? "VOCAL_SHEVA" : next.vowelName
39
+ *
40
+ * if (next && nextVowel) {
41
+ * const vowel = schema[nextVowel] || "";
42
+ * return syllable.text.replace(new RegExp("\u{05B0}", "u"), vowel);
43
+ * }
44
+ *
45
+ * return syllable.text;
46
+ * }
47
+ * }]
48
+ * });
49
+ * ```
50
+ *
51
+ * @example
52
+ *
53
+ * ```js
54
+ * // with PASS_THROUGH false, a custom mapping needs to be implemented,
55
+ * // or Hebrew characters are returned for the rest of the `FEATURE`
56
+ * heb.transliterate("בְּרֵאשִׁ֖ית", {
57
+ * ADDITIONAL_FEATURES: [{
58
+ * HEBREW: "(?<![\u{05B1}-\u{05BB}\u{05C7}].*)\u{05B0}",
59
+ * FEATURE: "syllable",
60
+ * PASS_THROUGH: false,
61
+ * TRANSLITERATION: function (syllable, _hebrew, schema) {
62
+ * const next = syllable.next;
63
+ * const nextVowel = next.vowelName === "SHEVA" ? "VOCAL_SHEVA" : next.vowelName
64
+ *
65
+ * if (next && nextVowel) {
66
+ * const vowel = schema[nextVowel] || "";
67
+ * return syllable.text.replace(new RegExp("\u{05B0}", "u"), vowel);
68
+ * }
69
+ *
70
+ * return syllable.text;
71
+ * }
72
+ * }]
73
+ * });
74
+ * // בּērēʾšît
75
+ * ```
76
+ */
77
+ PASS_THROUGH?: boolean;
78
+ }
79
+ /**
80
+ * @param word the `Word` object that matches the `HEBREW` property
81
+ * @param hebrew the `HEBREW` property
82
+ * @param schema the `Schema` being used
83
+ */
84
+ type WordCallback = (word: Word, hebrew: string | RegExp, schema: Schema) => string;
85
+ interface WordFeature extends HebrewFeature, PassThrough {
86
+ /**
87
+ * additional orthographic feature
88
+ *
89
+ * - `"cluster"` is any combination of a single character and optionally a _dagesh_ and vowel.
90
+ * - `"syllable"` is any combination of a multiple characters and a single vowel and optionally a _dagesh_
91
+ * - `"word"` covers everything else
92
+ */
93
+ FEATURE: "word";
94
+ /**
95
+ * a string or callback. The callback takes three par
96
+ *
97
+ * Using a string
98
+ * @example
99
+ *
100
+ * ```js
101
+ * transliterate("וְאֵ֥ת הָאָֽרֶץ", {
102
+ * ADDITIONAL_FEATURES: [{
103
+ * FEATURE: "word",
104
+ * HEBREW: "הָאָרֶץ",
105
+ * TRANSLITERATION: "The Earth"
106
+ * }]
107
+ * });
108
+ *
109
+ * // wǝʾēt The Earth
110
+ * ```
111
+ *
112
+ * Using a callback
113
+ * @example
114
+ *
115
+ * ```js
116
+ * transliterate(heb, {
117
+ * ADDITIONAL_FEATURES: [{
118
+ * HEBREW: "שְׁתַּיִם",
119
+ * FEATURE: "word",
120
+ * TRANSLITERATION: function (_word, _hebrew, schema) {
121
+ * return (
122
+ * schema["SHIN"] +
123
+ * (schema["TAV_DAGESH"] ?? schema["TAV"]) +
124
+ * schema["PATAH"] +
125
+ * schema["YOD"] +
126
+ * schema["HIRIQ"] +
127
+ * schema["FINAL_MEM"]
128
+ * );
129
+ * }
130
+ * }]
131
+ * });
132
+ *
133
+ * // štayim
134
+ * ```
135
+ */
136
+ TRANSLITERATION: string | WordCallback;
137
+ }
138
+ /**
139
+ * @param syllable the `Syllable` object that matches the `HEBREW` property
140
+ * @param hebrew the `HEBREW` property
141
+ * @param schema the `Schema` being used
142
+ */
143
+ type SyllableCallback = (syllable: Syllable, hebrew: string | RegExp, schema: Schema) => string;
144
+ interface SyllableFeature extends HebrewFeature, PassThrough {
145
+ /**
146
+ * additional orthographic feature
147
+ *
148
+ * - `"cluster"` is any combination of a single character and optionally a _dagesh_ and vowel.
149
+ * - `"syllable"` is any combination of a multiple characters and a single vowel and optionally a _dagesh_
150
+ * - `"word"` covers everything else
151
+ */
152
+ FEATURE: "syllable";
153
+ /**
154
+ * a string or callback
155
+ *
156
+ * Using a string
157
+ * @example
158
+ *
159
+ * ```js
160
+ * transliterate("וְאֵ֥ת הָאָֽרֶץ", {
161
+ * ADDITIONAL_FEATURES: [{
162
+ * FEATURE: "syllable",
163
+ * HEBREW: "הָאָרֶץ",
164
+ * TRANSLITERATION: "The Earth"
165
+ * }]
166
+ * });
167
+ *
168
+ * // wǝʾēt The Earth
169
+ * ```
170
+ *
171
+ * Using a callback
172
+ * @example
173
+ *
174
+ * ```js
175
+ * transliterate(heb, {
176
+ * ADDITIONAL_FEATURES: [{
177
+ * HEBREW: "שְׁתַּיִם",
178
+ * FEATURE: "syllable",
179
+ * TRANSLITERATION: function (_word, _text, schema) {
180
+ * return (
181
+ * schema["SHIN"] +
182
+ * (schema["TAV_DAGESH"] ?? schema["TAV"]) +
183
+ * schema["PATAH"] +
184
+ * schema["YOD"] +
185
+ * schema["HIRIQ"] +
186
+ * schema["FINAL_MEM"]
187
+ * );
188
+ * }
189
+ * }]
190
+ * });
191
+ *
192
+ * // štayim
193
+ * ```
194
+ */
195
+ TRANSLITERATION: string | SyllableCallback;
196
+ }
2
197
  /**
3
- * class for defining a schema for transliteration
198
+ * @param cluster the `Cluster` object that matches the `HEBREW` property
199
+ * @param hebrew the `HEBREW` property
200
+ * @param schema the `Schema` being used
4
201
  */
5
- export declare class Schema implements SylOpts {
202
+ type ClusterCallback = (cluster: Cluster, hebrew: string | RegExp, schema: Schema) => string;
203
+ interface ClusterFeature extends HebrewFeature, PassThrough {
204
+ /**
205
+ * additional orthographic feature
206
+ *
207
+ * - `"cluster"` is any combination of a single character and optionally a _dagesh_ and vowel.
208
+ * - `"syllable"` is any combination of a multiple characters and a single vowel and optionally a _dagesh_
209
+ * - `"word"` covers everything else
210
+ */
211
+ FEATURE: "cluster";
212
+ /**
213
+ * a string or callback
214
+ *
215
+ * Using a string
216
+ * @example
217
+ *
218
+ * ```js
219
+ * transliterate("בְּרֵאשִׁ֖ית", {
220
+ * ADDITIONAL_FEATURES: [{
221
+ * FEATURE: "cluster",
222
+ * HEBREW: "\u{05B0}",
223
+ * TRANSLITERATION: "The Earth"
224
+ * }]
225
+ * });
226
+ *
227
+ * // wǝʾēt The Earth
228
+ * ```
229
+ *
230
+ * Using a callback
231
+ * @example
232
+ *
233
+ * ```js
234
+ * transliterate(heb, {
235
+ * ADDITIONAL_FEATURES: [{
236
+ * HEBREW: "שְׁתַּיִם",
237
+ * FEATURE: "syllable",
238
+ * TRANSLITERATION: function (_word, _text, schema) {
239
+ * return (
240
+ * schema["SHIN"] +
241
+ * (schema["TAV_DAGESH"] ?? schema["TAV"]) +
242
+ * schema["PATAH"] +
243
+ * schema["YOD"] +
244
+ * schema["HIRIQ"] +
245
+ * schema["FINAL_MEM"]
246
+ * );
247
+ * }
248
+ * }]
249
+ * });
250
+ *
251
+ * // štayim
252
+ * ```
253
+ */
254
+ TRANSLITERATION: string | ClusterCallback;
255
+ }
256
+ type AdditionalFeatures = WordFeature | SyllableFeature | ClusterFeature;
257
+ type SchemaVowels = Record<keyof NameToCharMap, string>;
258
+ export declare class Schema implements SylOpts, SchemaVowels {
6
259
  /**
7
260
  * HEBREW POINT SHEVA (U+05B0) ְ◌
8
261
  * @example
@@ -63,6 +316,12 @@ export declare class Schema implements SylOpts {
63
316
  * 'ō'
64
317
  */
65
318
  HOLAM: string;
319
+ /**
320
+ * HEBREW POINT HOLAM (U+05BA) ֹ◌
321
+ * @example
322
+ * 'ō'
323
+ */
324
+ HOLAM_HASER: string;
66
325
  /**
67
326
  * HEBREW POINT QUBUTS (U+05BB) ֻ◌
68
327
  * @example
@@ -78,14 +337,23 @@ export declare class Schema implements SylOpts {
78
337
  DAGESH: string;
79
338
  /**
80
339
  * HEBREW POINT DAGESH OR MAPIQ (U+05BC) ּ◌
81
- * @description if true, repeats the consonant with the dagesh
82
- * @example
340
+ *
341
+ * @description A string or boolean that if true, repeats the consonant with the dagesh.
342
+ *
343
+ * @example string
344
+ *
345
+ * ```js
346
+ * transliterate('שַׁבָּת', { DAGESH_CHAZAQ: "\u0301" });
347
+ * // 'šab́āt'
348
+ * ```
349
+ *
350
+ * @example boolean
83
351
  * ```js
84
352
  * transliterate('שַׁבָּת', { DAGESH_CHAZAQ: true });
85
- * // 'shabbat'
353
+ * // 'šabbāt'
86
354
  * ```
87
355
  */
88
- DAGESH_CHAZAQ: boolean;
356
+ DAGESH_CHAZAQ: boolean | string;
89
357
  /**
90
358
  * HEBREW PUNCTUATION MAQAF (U+05BE) ־◌
91
359
  * @example
@@ -416,30 +684,29 @@ export declare class Schema implements SylOpts {
416
684
  * TRANSLITERATION: 'tz'
417
685
  * }]
418
686
  */
419
- ADDITIONAL_FEATURES?: {
420
- /**
421
- * additional orthographic feature
422
- *
423
- * - `"cluster"` is any combination of a single character and optionally a _dagesh_ and vowel.
424
- * - `"syllable"` is any combination of a multiple characters and a single vowel and optionally a _dagesh_
425
- * - `"word"` covers everything else
426
- */
427
- FEATURE: "word" | "syllable" | "cluster";
428
- /**
429
- * The Hebrew text — use consonants and vowels; do not use taamim
430
- *
431
- * The text is parsed as a Regex so special characters like `?` and `|` can be used
432
- *
433
- */
434
- HEBREW: string;
435
- TRANSLITERATION: string;
436
- }[];
687
+ ADDITIONAL_FEATURES?: AdditionalFeatures[];
437
688
  /**
438
689
  * the full form of the divine name - יהוה
439
690
  * @example
440
691
  * 'yhwh'
441
692
  */
442
693
  DIVINE_NAME: string;
694
+ /**
695
+ * the full form of the divine name pointed as 'elohim
696
+ *
697
+ * @description
698
+ * matches on the forms:
699
+ * - יֱהֹוִה
700
+ * - יֱהוִה
701
+ * - יְהֹוִה
702
+ * - יְהוִה
703
+ *
704
+ * If undefined, defaults to `DIVINE_NAME`
705
+ *
706
+ * @example
707
+ * 'ʾelōhim'
708
+ */
709
+ DIVINE_NAME_ELOHIM?: string;
443
710
  /**
444
711
  * a syllable separator, usually an empty string
445
712
  * @example
@@ -460,13 +727,76 @@ export declare class Schema implements SylOpts {
460
727
  * 'ˈ' or '\u0341'
461
728
  * @example
462
729
  * ```js
463
- * transliterate('מֶ֣לֶךְ', { STRESS_MARKER: { location: 'after-vowel', mark: '\u0301' } });
730
+ * transliterate('מֶ֣לֶךְ', {
731
+ * STRESS_MARKER: {
732
+ * location: 'after-vowel',
733
+ * mark: '\u0301'
734
+ * }
735
+ * });
464
736
  * // 'mélek'
465
737
  * ```
466
738
  */
467
739
  STRESS_MARKER?: {
740
+ /**
741
+ * the location of the mark
742
+ */
468
743
  location: "before-syllable" | "after-syllable" | "before-vowel" | "after-vowel";
744
+ /**
745
+ * a string to use as the marker
746
+ */
469
747
  mark: string;
748
+ /**
749
+ * Whether to exclude the mark on certain syllables
750
+ *
751
+ * @default
752
+ * "never"
753
+ *
754
+ * @example
755
+ *
756
+ * ```js
757
+ * // undefined and "never" are the same
758
+ * heb.transliterate("בֹּ֖קֶר י֥וֹם אֶחָֽד׃ ", {
759
+ * STRESS_MARKER: {
760
+ * location: "after-vowel",
761
+ * mark: "\u0301",
762
+ * }
763
+ * });
764
+ *
765
+ * // bṓqer yốm ʾeḥā́d
766
+ * ```
767
+ *
768
+ * @example
769
+ *
770
+ * ```js
771
+ * // exclude only single syllable words
772
+ * heb.transliterate("בֹּ֖קֶר י֥וֹם אֶחָֽד׃ ", {
773
+ * STRESS_MARKER: {
774
+ * location: "after-vowel",
775
+ * mark: "\u0301",
776
+ * exclude: "single"
777
+ * }
778
+ * });
779
+ *
780
+ * // bṓqer yôm ʾeḥā́d
781
+ * ```
782
+ *
783
+ * @example
784
+ *
785
+ * ```js
786
+ * // exclude when accent is on the final syllable
787
+ * // implicitly excludes single syllable words
788
+ * heb.transliterate("בֹּ֖קֶר י֥וֹם אֶחָֽד׃ ", {
789
+ * STRESS_MARKER: {
790
+ * location: "after-vowel",
791
+ * mark: "\u0301",
792
+ * exclude: "single"
793
+ * }
794
+ * });
795
+ *
796
+ * // bṓqer yôm ʾeḥād
797
+ * ```
798
+ */
799
+ exclude?: "never" | "final" | "single";
470
800
  };
471
801
  allowNoNiqqud: SylOpts["allowNoNiqqud"];
472
802
  article: SylOpts["article"];
@@ -481,3 +811,4 @@ export declare class Schema implements SylOpts {
481
811
  export declare class SBL extends Schema {
482
812
  constructor(schema: Partial<Schema>);
483
813
  }
814
+ export {};
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"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"}
package/dist/schema.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SBL = exports.Schema = void 0;
4
- /**
4
+ /*
5
5
  * class for defining a schema for transliteration
6
6
  */
7
7
  class Schema {
@@ -16,6 +16,7 @@ class Schema {
16
16
  (this.PATAH = schema.PATAH),
17
17
  (this.QAMATS = schema.QAMATS),
18
18
  (this.HOLAM = schema.HOLAM),
19
+ (this.HOLAM_HASER = schema.HOLAM_HASER),
19
20
  (this.QUBUTS = schema.QUBUTS),
20
21
  (this.DAGESH = schema.DAGESH),
21
22
  (this.DAGESH_CHAZAQ = schema.DAGESH_CHAZAQ),
@@ -68,6 +69,7 @@ class Schema {
68
69
  (this.TAV = schema.TAV),
69
70
  (this.TAV_DAGESH = schema.TAV_DAGESH),
70
71
  (this.DIVINE_NAME = schema.DIVINE_NAME),
72
+ (this.DIVINE_NAME_ELOHIM = schema.DIVINE_NAME_ELOHIM),
71
73
  (this.SYLLABLE_SEPARATOR = schema.SYLLABLE_SEPARATOR),
72
74
  (this.ADDITIONAL_FEATURES = schema.ADDITIONAL_FEATURES),
73
75
  (this.STRESS_MARKER = schema.STRESS_MARKER),
@@ -77,14 +79,14 @@ class Schema {
77
79
  (this.wawShureq = schema.wawShureq),
78
80
  (this.article = schema.article),
79
81
  (this.allowNoNiqqud = schema.allowNoNiqqud),
80
- (this.strict = schema.strict);
81
- this.holemHaser = schema.holemHaser;
82
+ (this.strict = schema.strict),
83
+ (this.holemHaser = schema.holemHaser);
82
84
  }
83
85
  }
84
86
  exports.Schema = Schema;
85
87
  class SBL extends Schema {
86
88
  constructor(schema) {
87
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47;
89
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47, _48, _49;
88
90
  super({
89
91
  VOCAL_SHEVA: (_a = schema.VOCAL_SHEVA) !== null && _a !== void 0 ? _a : "ǝ",
90
92
  HATAF_SEGOL: (_b = schema.HATAF_SEGOL) !== null && _b !== void 0 ? _b : "ĕ",
@@ -96,70 +98,73 @@ class SBL extends Schema {
96
98
  PATAH: (_h = schema.PATAH) !== null && _h !== void 0 ? _h : "a",
97
99
  QAMATS: (_j = schema.QAMATS) !== null && _j !== void 0 ? _j : "ā",
98
100
  HOLAM: (_k = schema.HOLAM) !== null && _k !== void 0 ? _k : "ō",
99
- QUBUTS: (_l = schema.QUBUTS) !== null && _l !== void 0 ? _l : "ū",
100
- DAGESH: (_m = schema.DAGESH) !== null && _m !== void 0 ? _m : "",
101
- DAGESH_CHAZAQ: (_o = schema.DAGESH_CHAZAQ) !== null && _o !== void 0 ? _o : true,
102
- MAQAF: (_p = schema.MAQAF) !== null && _p !== void 0 ? _p : "-",
103
- PASEQ: (_q = schema.PASEQ) !== null && _q !== void 0 ? _q : "",
104
- SOF_PASUQ: (_r = schema.SOF_PASUQ) !== null && _r !== void 0 ? _r : "",
105
- QAMATS_QATAN: (_s = schema.QAMATS_QATAN) !== null && _s !== void 0 ? _s : "o",
106
- FURTIVE_PATAH: (_t = schema.FURTIVE_PATAH) !== null && _t !== void 0 ? _t : "a",
107
- HIRIQ_YOD: (_u = schema.HIRIQ_YOD) !== null && _u !== void 0 ? _u : "î",
108
- TSERE_YOD: (_v = schema.TSERE_YOD) !== null && _v !== void 0 ? _v : "ê",
109
- SEGOL_YOD: (_w = schema.SEGOL_YOD) !== null && _w !== void 0 ? _w : "ê",
110
- SHUREQ: (_x = schema.SHUREQ) !== null && _x !== void 0 ? _x : "û",
111
- HOLAM_VAV: (_y = schema.HOLAM_VAV) !== null && _y !== void 0 ? _y : "ô",
112
- QAMATS_HE: (_z = schema.QAMATS_HE) !== null && _z !== void 0 ? _z : "â",
113
- SEGOL_HE: (_0 = schema.SEGOL_HE) !== null && _0 !== void 0 ? _0 : "ê",
114
- TSERE_HE: (_1 = schema.TSERE_HE) !== null && _1 !== void 0 ? _1 : "ê",
115
- MS_SUFX: (_2 = schema.MS_SUFX) !== null && _2 !== void 0 ? _2 : "āyw",
116
- ALEF: (_3 = schema.ALEF) !== null && _3 !== void 0 ? _3 : "ʾ",
117
- BET: (_4 = schema.BET) !== null && _4 !== void 0 ? _4 : "b",
118
- BET_DAGESH: (_5 = schema.BET_DAGESH) !== null && _5 !== void 0 ? _5 : undefined,
119
- GIMEL: (_6 = schema.GIMEL) !== null && _6 !== void 0 ? _6 : "g",
120
- GIMEL_DAGESH: (_7 = schema.GIMEL_DAGESH) !== null && _7 !== void 0 ? _7 : undefined,
121
- DALET: (_8 = schema.DALET) !== null && _8 !== void 0 ? _8 : "d",
122
- DALET_DAGESH: (_9 = schema.DALET_DAGESH) !== null && _9 !== void 0 ? _9 : undefined,
123
- HE: (_10 = schema.HE) !== null && _10 !== void 0 ? _10 : "h",
124
- VAV: (_11 = schema.VAV) !== null && _11 !== void 0 ? _11 : "w",
125
- ZAYIN: (_12 = schema.ZAYIN) !== null && _12 !== void 0 ? _12 : "z",
126
- HET: (_13 = schema.HET) !== null && _13 !== void 0 ? _13 : "",
127
- TET: (_14 = schema.TET) !== null && _14 !== void 0 ? _14 : "",
128
- YOD: (_15 = schema.YOD) !== null && _15 !== void 0 ? _15 : "y",
129
- FINAL_KAF: (_16 = schema.FINAL_KAF) !== null && _16 !== void 0 ? _16 : "k",
130
- KAF: (_17 = schema.KAF) !== null && _17 !== void 0 ? _17 : "k",
131
- KAF_DAGESH: (_18 = schema.KAF_DAGESH) !== null && _18 !== void 0 ? _18 : undefined,
132
- LAMED: (_19 = schema.LAMED) !== null && _19 !== void 0 ? _19 : "l",
133
- FINAL_MEM: (_20 = schema.FINAL_MEM) !== null && _20 !== void 0 ? _20 : "m",
134
- MEM: (_21 = schema.MEM) !== null && _21 !== void 0 ? _21 : "m",
135
- FINAL_NUN: (_22 = schema.FINAL_NUN) !== null && _22 !== void 0 ? _22 : "n",
136
- NUN: (_23 = schema.NUN) !== null && _23 !== void 0 ? _23 : "n",
137
- SAMEKH: (_24 = schema.SAMEKH) !== null && _24 !== void 0 ? _24 : "s",
138
- AYIN: (_25 = schema.AYIN) !== null && _25 !== void 0 ? _25 : "ʿ",
139
- FINAL_PE: (_26 = schema.FINAL_PE) !== null && _26 !== void 0 ? _26 : "p",
140
- PE: (_27 = schema.PE) !== null && _27 !== void 0 ? _27 : "p",
141
- PE_DAGESH: (_28 = schema.PE_DAGESH) !== null && _28 !== void 0 ? _28 : undefined,
142
- FINAL_TSADI: (_29 = schema.FINAL_TSADI) !== null && _29 !== void 0 ? _29 : "ṣ",
143
- TSADI: (_30 = schema.TSADI) !== null && _30 !== void 0 ? _30 : "ṣ",
144
- QOF: (_31 = schema.QOF) !== null && _31 !== void 0 ? _31 : "q",
145
- RESH: (_32 = schema.RESH) !== null && _32 !== void 0 ? _32 : "r",
146
- SHIN: (_33 = schema.SHIN) !== null && _33 !== void 0 ? _33 : "š",
147
- SIN: (_34 = schema.SIN) !== null && _34 !== void 0 ? _34 : "ś",
148
- TAV: (_35 = schema.TAV) !== null && _35 !== void 0 ? _35 : "t",
149
- TAV_DAGESH: (_36 = schema.TAV_DAGESH) !== null && _36 !== void 0 ? _36 : undefined,
150
- DIVINE_NAME: (_37 = schema.DIVINE_NAME) !== null && _37 !== void 0 ? _37 : "yhwh",
151
- SYLLABLE_SEPARATOR: (_38 = schema.SYLLABLE_SEPARATOR) !== null && _38 !== void 0 ? _38 : undefined,
152
- ADDITIONAL_FEATURES: (_39 = schema.ADDITIONAL_FEATURES) !== null && _39 !== void 0 ? _39 : undefined,
153
- STRESS_MARKER: (_40 = schema.STRESS_MARKER) !== null && _40 !== void 0 ? _40 : undefined,
154
- longVowels: (_41 = schema.longVowels) !== null && _41 !== void 0 ? _41 : true,
155
- qametsQatan: (_42 = schema.qametsQatan) !== null && _42 !== void 0 ? _42 : true,
156
- sqnmlvy: (_43 = schema.sqnmlvy) !== null && _43 !== void 0 ? _43 : true,
157
- wawShureq: (_44 = schema.wawShureq) !== null && _44 !== void 0 ? _44 : true,
158
- article: (_45 = schema.article) !== null && _45 !== void 0 ? _45 : true,
159
- allowNoNiqqud: (_46 = schema.allowNoNiqqud) !== null && _46 !== void 0 ? _46 : true,
160
- strict: (_47 = schema.strict) !== null && _47 !== void 0 ? _47 : false,
101
+ HOLAM_HASER: (_l = schema.HOLAM_HASER) !== null && _l !== void 0 ? _l : "ō",
102
+ QUBUTS: (_m = schema.QUBUTS) !== null && _m !== void 0 ? _m : "ū",
103
+ DAGESH: (_o = schema.DAGESH) !== null && _o !== void 0 ? _o : "",
104
+ DAGESH_CHAZAQ: (_p = schema.DAGESH_CHAZAQ) !== null && _p !== void 0 ? _p : true,
105
+ MAQAF: (_q = schema.MAQAF) !== null && _q !== void 0 ? _q : "-",
106
+ PASEQ: (_r = schema.PASEQ) !== null && _r !== void 0 ? _r : "",
107
+ SOF_PASUQ: (_s = schema.SOF_PASUQ) !== null && _s !== void 0 ? _s : "",
108
+ QAMATS_QATAN: (_t = schema.QAMATS_QATAN) !== null && _t !== void 0 ? _t : "o",
109
+ FURTIVE_PATAH: (_u = schema.FURTIVE_PATAH) !== null && _u !== void 0 ? _u : "a",
110
+ HIRIQ_YOD: (_v = schema.HIRIQ_YOD) !== null && _v !== void 0 ? _v : "î",
111
+ TSERE_YOD: (_w = schema.TSERE_YOD) !== null && _w !== void 0 ? _w : "ê",
112
+ SEGOL_YOD: (_x = schema.SEGOL_YOD) !== null && _x !== void 0 ? _x : "ê",
113
+ SHUREQ: (_y = schema.SHUREQ) !== null && _y !== void 0 ? _y : "û",
114
+ HOLAM_VAV: (_z = schema.HOLAM_VAV) !== null && _z !== void 0 ? _z : "ô",
115
+ QAMATS_HE: (_0 = schema.QAMATS_HE) !== null && _0 !== void 0 ? _0 : "â",
116
+ SEGOL_HE: (_1 = schema.SEGOL_HE) !== null && _1 !== void 0 ? _1 : "ê",
117
+ TSERE_HE: (_2 = schema.TSERE_HE) !== null && _2 !== void 0 ? _2 : "ê",
118
+ MS_SUFX: (_3 = schema.MS_SUFX) !== null && _3 !== void 0 ? _3 : "āyw",
119
+ ALEF: (_4 = schema.ALEF) !== null && _4 !== void 0 ? _4 : "ʾ",
120
+ BET: (_5 = schema.BET) !== null && _5 !== void 0 ? _5 : "b",
121
+ BET_DAGESH: (_6 = schema.BET_DAGESH) !== null && _6 !== void 0 ? _6 : undefined,
122
+ GIMEL: (_7 = schema.GIMEL) !== null && _7 !== void 0 ? _7 : "g",
123
+ GIMEL_DAGESH: (_8 = schema.GIMEL_DAGESH) !== null && _8 !== void 0 ? _8 : undefined,
124
+ DALET: (_9 = schema.DALET) !== null && _9 !== void 0 ? _9 : "d",
125
+ DALET_DAGESH: (_10 = schema.DALET_DAGESH) !== null && _10 !== void 0 ? _10 : undefined,
126
+ HE: (_11 = schema.HE) !== null && _11 !== void 0 ? _11 : "h",
127
+ VAV: (_12 = schema.VAV) !== null && _12 !== void 0 ? _12 : "w",
128
+ ZAYIN: (_13 = schema.ZAYIN) !== null && _13 !== void 0 ? _13 : "z",
129
+ HET: (_14 = schema.HET) !== null && _14 !== void 0 ? _14 : "",
130
+ TET: (_15 = schema.TET) !== null && _15 !== void 0 ? _15 : "",
131
+ YOD: (_16 = schema.YOD) !== null && _16 !== void 0 ? _16 : "y",
132
+ FINAL_KAF: (_17 = schema.FINAL_KAF) !== null && _17 !== void 0 ? _17 : "k",
133
+ KAF: (_18 = schema.KAF) !== null && _18 !== void 0 ? _18 : "k",
134
+ KAF_DAGESH: (_19 = schema.KAF_DAGESH) !== null && _19 !== void 0 ? _19 : undefined,
135
+ LAMED: (_20 = schema.LAMED) !== null && _20 !== void 0 ? _20 : "l",
136
+ FINAL_MEM: (_21 = schema.FINAL_MEM) !== null && _21 !== void 0 ? _21 : "m",
137
+ MEM: (_22 = schema.MEM) !== null && _22 !== void 0 ? _22 : "m",
138
+ FINAL_NUN: (_23 = schema.FINAL_NUN) !== null && _23 !== void 0 ? _23 : "n",
139
+ NUN: (_24 = schema.NUN) !== null && _24 !== void 0 ? _24 : "n",
140
+ SAMEKH: (_25 = schema.SAMEKH) !== null && _25 !== void 0 ? _25 : "s",
141
+ AYIN: (_26 = schema.AYIN) !== null && _26 !== void 0 ? _26 : "ʿ",
142
+ FINAL_PE: (_27 = schema.FINAL_PE) !== null && _27 !== void 0 ? _27 : "p",
143
+ PE: (_28 = schema.PE) !== null && _28 !== void 0 ? _28 : "p",
144
+ PE_DAGESH: (_29 = schema.PE_DAGESH) !== null && _29 !== void 0 ? _29 : undefined,
145
+ FINAL_TSADI: (_30 = schema.FINAL_TSADI) !== null && _30 !== void 0 ? _30 : "ṣ",
146
+ TSADI: (_31 = schema.TSADI) !== null && _31 !== void 0 ? _31 : "",
147
+ QOF: (_32 = schema.QOF) !== null && _32 !== void 0 ? _32 : "q",
148
+ RESH: (_33 = schema.RESH) !== null && _33 !== void 0 ? _33 : "r",
149
+ SHIN: (_34 = schema.SHIN) !== null && _34 !== void 0 ? _34 : "š",
150
+ SIN: (_35 = schema.SIN) !== null && _35 !== void 0 ? _35 : "ś",
151
+ TAV: (_36 = schema.TAV) !== null && _36 !== void 0 ? _36 : "t",
152
+ TAV_DAGESH: (_37 = schema.TAV_DAGESH) !== null && _37 !== void 0 ? _37 : undefined,
153
+ DIVINE_NAME: (_38 = schema.DIVINE_NAME) !== null && _38 !== void 0 ? _38 : "yhwh",
154
+ DIVINE_NAME_ELOHIM: (_39 = schema.DIVINE_NAME_ELOHIM) !== null && _39 !== void 0 ? _39 : undefined,
155
+ SYLLABLE_SEPARATOR: (_40 = schema.SYLLABLE_SEPARATOR) !== null && _40 !== void 0 ? _40 : undefined,
156
+ ADDITIONAL_FEATURES: (_41 = schema.ADDITIONAL_FEATURES) !== null && _41 !== void 0 ? _41 : undefined,
157
+ STRESS_MARKER: (_42 = schema.STRESS_MARKER) !== null && _42 !== void 0 ? _42 : undefined,
158
+ longVowels: (_43 = schema.longVowels) !== null && _43 !== void 0 ? _43 : true,
159
+ qametsQatan: (_44 = schema.qametsQatan) !== null && _44 !== void 0 ? _44 : true,
160
+ sqnmlvy: (_45 = schema.sqnmlvy) !== null && _45 !== void 0 ? _45 : true,
161
+ wawShureq: (_46 = schema.wawShureq) !== null && _46 !== void 0 ? _46 : true,
162
+ article: (_47 = schema.article) !== null && _47 !== void 0 ? _47 : true,
163
+ allowNoNiqqud: (_48 = schema.allowNoNiqqud) !== null && _48 !== void 0 ? _48 : true,
164
+ strict: (_49 = schema.strict) !== null && _49 !== void 0 ? _49 : false,
161
165
  holemHaser: schema.holemHaser || "remove"
162
166
  });
163
167
  }
164
168
  }
165
169
  exports.SBL = SBL;
170
+ //# sourceMappingURL=schema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schema.js","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"brillAcademic.d.ts","sourceRoot":"","sources":["../../src/schemas/brillAcademic.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAEnC,eAAO,MAAM,aAAa,EAAE,MAwE3B,CAAC"}