hebrew-transliteration 2.6.4 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -393
- package/dist/cjs/index.js +4 -2
- package/dist/cjs/index.js.map +2 -2
- package/dist/cjs/remove.js +2 -1
- package/dist/cjs/remove.js.map +2 -2
- package/dist/cjs/schema.js +160 -3
- package/dist/cjs/schema.js.map +2 -2
- package/dist/cjs/schemas/jss.js +1 -1
- package/dist/cjs/schemas/jss.js.map +1 -1
- package/dist/cjs/schemas/tiberian.js +8 -0
- package/dist/cjs/schemas/tiberian.js.map +2 -2
- package/dist/cjs/sequence.js.map +2 -2
- package/dist/cjs/transliterate.js +2 -2
- package/dist/cjs/transliterate.js.map +2 -2
- package/dist/esm/index.js +4 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/remove.js +11 -12
- package/dist/esm/remove.js.map +1 -1
- package/dist/esm/schema.js +1300 -211
- package/dist/esm/schema.js.map +1 -1
- package/dist/esm/schemas/jss.js +1 -1
- package/dist/esm/schemas/jss.js.map +1 -1
- package/dist/esm/schemas/tiberian.js +8 -0
- package/dist/esm/schemas/tiberian.js.map +1 -1
- package/dist/esm/sequence.js +9 -7
- package/dist/esm/sequence.js.map +1 -1
- package/dist/esm/transliterate.js +21 -18
- package/dist/esm/transliterate.js.map +1 -1
- package/dist/types/index.d.ts +5 -8
- package/dist/types/remove.d.ts +150 -12
- package/dist/types/schema.d.ts +1396 -227
- package/dist/types/sequence.d.ts +9 -7
- package/dist/types/transliterate.d.ts +15 -16
- package/package.json +21 -20
package/dist/types/schema.d.ts
CHANGED
|
@@ -1,32 +1,30 @@
|
|
|
1
1
|
import { Cluster } from "havarotjs/cluster";
|
|
2
|
-
import { SylOpts } from "havarotjs/text";
|
|
3
2
|
import { Syllable } from "havarotjs/syllable";
|
|
4
|
-
import {
|
|
3
|
+
import { SylOpts } from "havarotjs/text";
|
|
5
4
|
import { NameToCharMap } from "havarotjs/utils/vowelMap";
|
|
6
|
-
|
|
5
|
+
import { Word } from "havarotjs/word";
|
|
6
|
+
export type { SylOpts };
|
|
7
|
+
export interface HebrewFeature {
|
|
7
8
|
/**
|
|
8
9
|
* The Hebrew text — use consonants and vowels; do not use taamim
|
|
9
10
|
*
|
|
11
|
+
* @remarks
|
|
10
12
|
* The text is parsed as a Regex so special characters like `?` and `|` can be used
|
|
11
13
|
*
|
|
12
14
|
*/
|
|
13
15
|
HEBREW: string | RegExp;
|
|
14
16
|
}
|
|
15
|
-
interface PassThrough {
|
|
17
|
+
export interface PassThrough {
|
|
16
18
|
/**
|
|
17
|
-
*
|
|
19
|
+
* If `true` passes the characters of the result of the `TRANSLITERATION` callback to the be mapped to the schema.
|
|
18
20
|
* If `TRANSLITERATION` is a string, this does nothing.
|
|
19
21
|
*
|
|
20
22
|
* @default
|
|
21
23
|
* true
|
|
22
24
|
*
|
|
23
|
-
* @description
|
|
24
|
-
* This is generally most useful when the callback does not transliterate the entire `FEATURE`
|
|
25
|
-
*
|
|
26
25
|
* @example
|
|
27
|
-
*
|
|
28
26
|
* ```js
|
|
29
|
-
* // with PASS_THROUGH true
|
|
27
|
+
* // with PASS_THROUGH true or undefined; the rest of the characters are passed through
|
|
30
28
|
* // to regular mapping on the schema
|
|
31
29
|
* heb.transliterate("בְּרֵאשִׁ֖ית", {
|
|
32
30
|
* ADDITIONAL_FEATURES: [{
|
|
@@ -39,7 +37,7 @@ interface PassThrough {
|
|
|
39
37
|
*
|
|
40
38
|
* if (next && nextVowel) {
|
|
41
39
|
* const vowel = schema[nextVowel] || "";
|
|
42
|
-
* return syllable.text.
|
|
40
|
+
* return syllable.text.replacenew RegExp("\u{05B0}", "u"; vowel);
|
|
43
41
|
* }
|
|
44
42
|
*
|
|
45
43
|
* return syllable.text;
|
|
@@ -49,7 +47,6 @@ interface PassThrough {
|
|
|
49
47
|
* ```
|
|
50
48
|
*
|
|
51
49
|
* @example
|
|
52
|
-
*
|
|
53
50
|
* ```js
|
|
54
51
|
* // with PASS_THROUGH false, a custom mapping needs to be implemented,
|
|
55
52
|
* // or Hebrew characters are returned for the rest of the `FEATURE`
|
|
@@ -64,7 +61,7 @@ interface PassThrough {
|
|
|
64
61
|
*
|
|
65
62
|
* if (next && nextVowel) {
|
|
66
63
|
* const vowel = schema[nextVowel] || "";
|
|
67
|
-
* return syllable.text.
|
|
64
|
+
* return syllable.text.replacenew RegExp("\u{05B0}", "u"; vowel);
|
|
68
65
|
* }
|
|
69
66
|
*
|
|
70
67
|
* return syllable.text;
|
|
@@ -73,6 +70,9 @@ interface PassThrough {
|
|
|
73
70
|
* });
|
|
74
71
|
* // בּērēʾšît
|
|
75
72
|
* ```
|
|
73
|
+
*
|
|
74
|
+
* @remarks
|
|
75
|
+
* This is generally most useful when the callback does not transliterate the entire `FEATURE`
|
|
76
76
|
*/
|
|
77
77
|
PASS_THROUGH?: boolean;
|
|
78
78
|
}
|
|
@@ -81,10 +81,10 @@ interface PassThrough {
|
|
|
81
81
|
* @param hebrew the `HEBREW` property
|
|
82
82
|
* @param schema the `Schema` being used
|
|
83
83
|
*/
|
|
84
|
-
type WordCallback = (word: Word, hebrew: string | RegExp, schema: Schema) => string;
|
|
85
|
-
interface WordFeature extends HebrewFeature, PassThrough {
|
|
84
|
+
export type WordCallback = (word: Word, hebrew: string | RegExp, schema: Schema) => string;
|
|
85
|
+
export interface WordFeature extends HebrewFeature, PassThrough {
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* Additional orthographic feature.
|
|
88
88
|
*
|
|
89
89
|
* - `"cluster"` is any combination of a single character and optionally a _dagesh_ and vowel.
|
|
90
90
|
* - `"syllable"` is any combination of a multiple characters and a single vowel and optionally a _dagesh_
|
|
@@ -120,7 +120,7 @@ interface WordFeature extends HebrewFeature, PassThrough {
|
|
|
120
120
|
* TRANSLITERATION: function (_word, _hebrew, schema) {
|
|
121
121
|
* return (
|
|
122
122
|
* schema["SHIN"] +
|
|
123
|
-
*
|
|
123
|
+
* (schema["TAV_DAGESH"] ?? schema["TAV"]) +
|
|
124
124
|
* schema["PATAH"] +
|
|
125
125
|
* schema["YOD"] +
|
|
126
126
|
* schema["HIRIQ"] +
|
|
@@ -140,10 +140,10 @@ interface WordFeature extends HebrewFeature, PassThrough {
|
|
|
140
140
|
* @param hebrew the `HEBREW` property
|
|
141
141
|
* @param schema the `Schema` being used
|
|
142
142
|
*/
|
|
143
|
-
type SyllableCallback = (syllable: Syllable, hebrew: string | RegExp, schema: Schema) => string;
|
|
144
|
-
interface SyllableFeature extends HebrewFeature, PassThrough {
|
|
143
|
+
export type SyllableCallback = (syllable: Syllable, hebrew: string | RegExp, schema: Schema) => string;
|
|
144
|
+
export interface SyllableFeature extends HebrewFeature, PassThrough {
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* Additional orthographic feature:
|
|
147
147
|
*
|
|
148
148
|
* - `"cluster"` is any combination of a single character and optionally a _dagesh_ and vowel.
|
|
149
149
|
* - `"syllable"` is any combination of a multiple characters and a single vowel and optionally a _dagesh_
|
|
@@ -151,45 +151,43 @@ interface SyllableFeature extends HebrewFeature, PassThrough {
|
|
|
151
151
|
*/
|
|
152
152
|
FEATURE: "syllable";
|
|
153
153
|
/**
|
|
154
|
-
*
|
|
154
|
+
* A string or callback to customize output
|
|
155
155
|
*
|
|
156
|
-
* Using a string
|
|
157
156
|
* @example
|
|
158
|
-
*
|
|
157
|
+
* Using a string
|
|
159
158
|
* ```js
|
|
160
|
-
* transliterate("
|
|
159
|
+
* transliterate("מְחִיּיָאֵ֗ל", {
|
|
161
160
|
* ADDITIONAL_FEATURES: [{
|
|
162
161
|
* FEATURE: "syllable",
|
|
163
|
-
* HEBREW:
|
|
164
|
-
* TRANSLITERATION: "
|
|
162
|
+
* HEBREW: /יּ(?![\u{05B4}-\u{05BB}])/u, // a yod with a dagesh, not followed by a vowel character
|
|
163
|
+
* TRANSLITERATION: "Y"
|
|
165
164
|
* }]
|
|
166
165
|
* });
|
|
167
166
|
*
|
|
168
|
-
*
|
|
167
|
+
* mǝḥiYyāʾēl
|
|
169
168
|
* ```
|
|
170
169
|
*
|
|
171
|
-
* Using a callback
|
|
172
170
|
* @example
|
|
173
|
-
*
|
|
171
|
+
* Using a callback
|
|
174
172
|
* ```js
|
|
175
|
-
* transliterate(
|
|
173
|
+
* transliterate("נָעֳמִי֙", {
|
|
176
174
|
* ADDITIONAL_FEATURES: [{
|
|
177
|
-
* HEBREW: "שְׁתַּיִם",
|
|
178
175
|
* FEATURE: "syllable",
|
|
179
|
-
*
|
|
180
|
-
*
|
|
181
|
-
*
|
|
182
|
-
*
|
|
183
|
-
*
|
|
184
|
-
*
|
|
185
|
-
*
|
|
186
|
-
*
|
|
187
|
-
*
|
|
176
|
+
* HEBREW: /\u{05C7}/u,
|
|
177
|
+
* TRANSLITERATION: (syllable) => {
|
|
178
|
+
* // If the syllable contains a qamets qatan character (U+05C7), check the text of the next syllable
|
|
179
|
+
* const next = syllable?.next?.value?.text;
|
|
180
|
+
*
|
|
181
|
+
* // If the next syllable includes a hateph qamets, then replace the qamets qatan with a regular qamets
|
|
182
|
+
* if (next && next.includes("\u05B3")) {
|
|
183
|
+
* return syllable.text.replace("\u{05C7}", "\u{05B8}");
|
|
184
|
+
* }
|
|
185
|
+
* return syllable.text;
|
|
188
186
|
* }
|
|
189
187
|
* }]
|
|
190
188
|
* });
|
|
191
189
|
*
|
|
192
|
-
* //
|
|
190
|
+
* // nāʿŏmî
|
|
193
191
|
* ```
|
|
194
192
|
*/
|
|
195
193
|
TRANSLITERATION: string | SyllableCallback;
|
|
@@ -199,10 +197,10 @@ interface SyllableFeature extends HebrewFeature, PassThrough {
|
|
|
199
197
|
* @param hebrew the `HEBREW` property
|
|
200
198
|
* @param schema the `Schema` being used
|
|
201
199
|
*/
|
|
202
|
-
type ClusterCallback = (cluster: Cluster, hebrew: string | RegExp, schema: Schema) => string;
|
|
203
|
-
interface ClusterFeature extends HebrewFeature, PassThrough {
|
|
200
|
+
export type ClusterCallback = (cluster: Cluster, hebrew: string | RegExp, schema: Schema) => string;
|
|
201
|
+
export interface ClusterFeature extends HebrewFeature, PassThrough {
|
|
204
202
|
/**
|
|
205
|
-
*
|
|
203
|
+
* Additional orthographic feature.
|
|
206
204
|
*
|
|
207
205
|
* - `"cluster"` is any combination of a single character and optionally a _dagesh_ and vowel.
|
|
208
206
|
* - `"syllable"` is any combination of a multiple characters and a single vowel and optionally a _dagesh_
|
|
@@ -210,539 +208,1467 @@ interface ClusterFeature extends HebrewFeature, PassThrough {
|
|
|
210
208
|
*/
|
|
211
209
|
FEATURE: "cluster";
|
|
212
210
|
/**
|
|
213
|
-
*
|
|
211
|
+
* A string or callback to customize the output
|
|
214
212
|
*
|
|
215
|
-
* Using a string
|
|
216
213
|
* @example
|
|
217
|
-
*
|
|
214
|
+
* Using a string
|
|
218
215
|
* ```js
|
|
219
|
-
* transliterate("
|
|
220
|
-
*
|
|
221
|
-
*
|
|
222
|
-
*
|
|
223
|
-
*
|
|
224
|
-
*
|
|
216
|
+
* transliterate("הַזֹּאת", {
|
|
217
|
+
* ADDITIONAL_FEATURES: [{
|
|
218
|
+
* FEATURE: "cluster",
|
|
219
|
+
* HEBREW: "זּ",
|
|
220
|
+
* TRANSLITERATION: "tz"
|
|
221
|
+
* }]
|
|
225
222
|
* });
|
|
226
223
|
*
|
|
227
|
-
* //
|
|
224
|
+
* // hatzōʾt
|
|
228
225
|
* ```
|
|
229
226
|
*
|
|
230
|
-
* Using a callback
|
|
231
227
|
* @example
|
|
232
|
-
*
|
|
228
|
+
* Using a callback
|
|
233
229
|
* ```js
|
|
234
|
-
* transliterate(
|
|
235
|
-
*
|
|
236
|
-
*
|
|
237
|
-
*
|
|
238
|
-
*
|
|
239
|
-
*
|
|
240
|
-
*
|
|
241
|
-
*
|
|
242
|
-
*
|
|
243
|
-
*
|
|
244
|
-
*
|
|
245
|
-
*
|
|
246
|
-
*
|
|
247
|
-
*
|
|
248
|
-
*
|
|
230
|
+
* transliterate("וַתֵּ֨שֶׁב", {
|
|
231
|
+
* TAV_DAGESH: "tʰ",,
|
|
232
|
+
* ADDITIONAL_FEATURES: [{
|
|
233
|
+
* FEATURE: 'cluster',
|
|
234
|
+
* HEBREW: /תּ(?!\u{05B0})/u,
|
|
235
|
+
* TRANSLITERATION: (cluster, _, schema) => {
|
|
236
|
+
* // if there is a dagesh, but it is the beginning of the word
|
|
237
|
+
* // we can return the text, as the character w/ the dagesh will not be doubled
|
|
238
|
+
* if (!cluster.prev || cluster.prev.value?.isNotHebrew) {
|
|
239
|
+
* return cluster.text;
|
|
240
|
+
* }
|
|
241
|
+
*
|
|
242
|
+
* // if there is a dagesh, it may be that it is a dagesh qal (i.e. lene)
|
|
243
|
+
* // if it is a dagesh lene, then like the beginning of the word,
|
|
244
|
+
* // the character w/ the dagesh will not be doubled
|
|
245
|
+
* const prevCoda = cluster.syllable?.prev?.value?.codaWithGemination;
|
|
246
|
+
* if (!prevCoda?.includes("ת",)) {
|
|
247
|
+
* return cluster.text;
|
|
248
|
+
* }
|
|
249
|
+
*
|
|
250
|
+
* // because the *_DAGESH value is a digraph, we need to replace the first character
|
|
251
|
+
* // or it will be doubled in rules.ts as "tʰtʰ"
|
|
252
|
+
* const noAspiration = schema['TAV_DAGESH']?.replace("ʰ",, '') ?? '';
|
|
253
|
+
* return cluster.text.replace("תּ",,`${noAspiration + schema['TAV_DAGESH']}`);
|
|
254
|
+
* },
|
|
255
|
+
* }]
|
|
249
256
|
* });
|
|
250
257
|
*
|
|
251
|
-
* //
|
|
258
|
+
* // wattʰēšeb
|
|
252
259
|
* ```
|
|
253
260
|
*/
|
|
254
261
|
TRANSLITERATION: string | ClusterCallback;
|
|
255
262
|
}
|
|
256
|
-
type AdditionalFeatures = WordFeature | SyllableFeature | ClusterFeature;
|
|
257
263
|
type SchemaVowels = Record<keyof NameToCharMap, string>;
|
|
264
|
+
/**
|
|
265
|
+
* @categoryDescription Consonants
|
|
266
|
+
* Hebrew characters being used as consonants
|
|
267
|
+
*
|
|
268
|
+
* @categoryDescription Vowels
|
|
269
|
+
* Hebrew characters being used as vowels, including the vocal sheva and ligatures
|
|
270
|
+
*
|
|
271
|
+
* @categoryDescription Taamim
|
|
272
|
+
* Hebrew characters that that are used as taamim (i.e. accents)
|
|
273
|
+
*
|
|
274
|
+
* @categoryDescription Marks
|
|
275
|
+
* Hebrew characters that are not consonants, vowels, or taamim, serving some other purpose, such as the dagesh or the paseq
|
|
276
|
+
*
|
|
277
|
+
* @categoryDescription Orthographic Features
|
|
278
|
+
* Multiple Hebrew characters that form a semantic group, like the 3MS Suffix or a consonant with a dagesh
|
|
279
|
+
*
|
|
280
|
+
* @categoryDescription Syllabification
|
|
281
|
+
* Options from havarotjs for syllabifying words
|
|
282
|
+
*/
|
|
283
|
+
/**
|
|
284
|
+
* Class for defining a schema for transliteration.
|
|
285
|
+
*
|
|
286
|
+
* @remarks
|
|
287
|
+
* Examples are truncated for brevity.
|
|
288
|
+
*/
|
|
258
289
|
export declare class Schema implements SylOpts, SchemaVowels {
|
|
259
290
|
/**
|
|
260
291
|
* HEBREW POINT SHEVA (U+05B0) ְ◌
|
|
292
|
+
*
|
|
293
|
+
* @category Vowels
|
|
294
|
+
*
|
|
261
295
|
* @example
|
|
262
|
-
*
|
|
296
|
+
* ```js
|
|
297
|
+
* const schema = new Schema({
|
|
298
|
+
* // truncated for brevity
|
|
299
|
+
* VOCAL_SHEVA: "ǝ",
|
|
300
|
+
* });
|
|
301
|
+
* transliterate("סְלִ֣ק", schema);
|
|
302
|
+
* // sǝliq
|
|
303
|
+
* ```
|
|
263
304
|
*/
|
|
264
305
|
VOCAL_SHEVA: string;
|
|
265
306
|
/**
|
|
266
307
|
* HEBREW POINT HATAF SEGOL (U+05B1) ֱ◌
|
|
308
|
+
*
|
|
309
|
+
* @category Vowels
|
|
310
|
+
*
|
|
267
311
|
* @example
|
|
268
|
-
*
|
|
312
|
+
* ```js
|
|
313
|
+
* const schema = new Schema({
|
|
314
|
+
* // truncated for brevity
|
|
315
|
+
* HATAF_SEGOL: "ĕ",
|
|
316
|
+
* });
|
|
317
|
+
* transliterate("אֱלֹהִ֑ים", schema);
|
|
318
|
+
* // ʾĕlōhîm
|
|
319
|
+
* ```
|
|
269
320
|
*/
|
|
270
321
|
HATAF_SEGOL: string;
|
|
271
322
|
/**
|
|
272
323
|
* HEBREW POINT HATAF PATAH (U+05B2) ֲ◌
|
|
324
|
+
*
|
|
325
|
+
* @category Vowels
|
|
326
|
+
*
|
|
273
327
|
* @example
|
|
274
|
-
*
|
|
328
|
+
* ```js
|
|
329
|
+
* const schema = new Schema({
|
|
330
|
+
* // truncated for brevity
|
|
331
|
+
* HATAF_PATAH: "ă",
|
|
332
|
+
* });
|
|
333
|
+
* transliterate("נַֽעֲשֶׂ֥ה", schema);
|
|
334
|
+
* // naʿăśê
|
|
335
|
+
* ```
|
|
275
336
|
*/
|
|
276
337
|
HATAF_PATAH: string;
|
|
277
338
|
/**
|
|
278
339
|
* HEBREW POINT HATAF QAMATS (U+05B3) ֳ◌
|
|
340
|
+
*
|
|
341
|
+
* @category Vowels
|
|
342
|
+
*
|
|
279
343
|
* @example
|
|
280
|
-
*
|
|
344
|
+
* ```js
|
|
345
|
+
* const schema = new Schema({
|
|
346
|
+
* // truncated for brevity
|
|
347
|
+
* HATAF_QAMATS: "ŏ",
|
|
348
|
+
* });
|
|
349
|
+
* transliterate("אֳרָנִים", schema);
|
|
350
|
+
* // ʾŏrānîm
|
|
351
|
+
* ```
|
|
281
352
|
*/
|
|
282
353
|
HATAF_QAMATS: string;
|
|
283
354
|
/**
|
|
284
355
|
* HEBREW POINT HIRIQ (U+05B4) ִ◌
|
|
356
|
+
*
|
|
357
|
+
* @category Vowels
|
|
358
|
+
*
|
|
285
359
|
* @example
|
|
286
|
-
*
|
|
360
|
+
* ```js
|
|
361
|
+
* const schema = new Schema({
|
|
362
|
+
* // truncated for brevity
|
|
363
|
+
* HIRIQ: "i",
|
|
364
|
+
* });
|
|
365
|
+
* transliterate("הִנֵּה֩", schema);
|
|
366
|
+
* // hinnê
|
|
367
|
+
* ```
|
|
287
368
|
*/
|
|
288
369
|
HIRIQ: string;
|
|
289
370
|
/**
|
|
290
371
|
* HEBREW POINT TSERE (U+05B5) ֵ◌
|
|
372
|
+
*
|
|
373
|
+
* @category Vowels
|
|
374
|
+
*
|
|
291
375
|
* @example
|
|
292
|
-
*
|
|
376
|
+
* ```js
|
|
377
|
+
* const schema = new Schema({
|
|
378
|
+
* // truncated for brevity
|
|
379
|
+
* TSERE: "ē",
|
|
380
|
+
* });
|
|
381
|
+
* transliterate("אֵשׁ", schema);
|
|
382
|
+
* // ʾēš
|
|
383
|
+
* ```
|
|
293
384
|
*/
|
|
294
385
|
TSERE: string;
|
|
295
386
|
/**
|
|
296
387
|
* HEBREW POINT SEGOL (U+05B6) ֶ◌
|
|
388
|
+
*
|
|
389
|
+
* @category Vowels
|
|
390
|
+
*
|
|
297
391
|
* @example
|
|
298
|
-
*
|
|
392
|
+
* ```js
|
|
393
|
+
* const schema = new Schema({
|
|
394
|
+
* // truncated for brevity
|
|
395
|
+
* SEGOL: "e",
|
|
396
|
+
* });
|
|
397
|
+
* transliterate("אֶל", schema);
|
|
398
|
+
* // ʾel
|
|
399
|
+
* ```
|
|
299
400
|
*/
|
|
300
401
|
SEGOL: string;
|
|
301
402
|
/**
|
|
302
403
|
* HEBREW POINT PATAH (U+05B7) ַ◌
|
|
404
|
+
*
|
|
405
|
+
* @category Vowels
|
|
406
|
+
*
|
|
303
407
|
* @example
|
|
304
|
-
*
|
|
408
|
+
* ```js
|
|
409
|
+
* const schema = new Schema({
|
|
410
|
+
* // truncated for brevity
|
|
411
|
+
* PATAH: "a",
|
|
412
|
+
* });
|
|
413
|
+
* transliterate("נַ֗עַר", schema);
|
|
414
|
+
* // naʿar
|
|
415
|
+
* ```
|
|
305
416
|
*/
|
|
306
417
|
PATAH: string;
|
|
307
418
|
/**
|
|
308
419
|
* HEBREW POINT QAMATS (U+05B8) ָ◌
|
|
420
|
+
*
|
|
421
|
+
* @category Vowels
|
|
422
|
+
*
|
|
309
423
|
* @example
|
|
310
|
-
*
|
|
424
|
+
* ```js
|
|
425
|
+
* const schema = new Schema({
|
|
426
|
+
* // truncated for brevity
|
|
427
|
+
* QAMATS: "ā",
|
|
428
|
+
* });
|
|
429
|
+
* transliterate("דָבָר֙", schema);
|
|
430
|
+
* // dābār
|
|
431
|
+
* ```
|
|
311
432
|
*/
|
|
312
433
|
QAMATS: string;
|
|
313
434
|
/**
|
|
314
435
|
* HEBREW POINT HOLAM (U+05B9) ֹ◌
|
|
436
|
+
*
|
|
437
|
+
* @category Vowels
|
|
438
|
+
*
|
|
315
439
|
* @example
|
|
316
|
-
*
|
|
440
|
+
* ```js
|
|
441
|
+
* const schema = new Schema({
|
|
442
|
+
* // truncated for brevity
|
|
443
|
+
* HOLAM: "ō",
|
|
444
|
+
* });
|
|
445
|
+
* transliterate("לֹא", schema);
|
|
446
|
+
* // lōʾ
|
|
447
|
+
* ```
|
|
317
448
|
*/
|
|
318
449
|
HOLAM: string;
|
|
319
450
|
/**
|
|
320
|
-
* HEBREW POINT HOLAM (U+05BA) ֹ◌
|
|
451
|
+
* HEBREW POINT HOLAM HASER FOR VAV (U+05BA) ֹ◌
|
|
452
|
+
*
|
|
453
|
+
* @category Vowels
|
|
454
|
+
*
|
|
321
455
|
* @example
|
|
322
|
-
*
|
|
456
|
+
* ```js
|
|
457
|
+
* const schema = new Schema({
|
|
458
|
+
* // truncated for brevity
|
|
459
|
+
* HOLAM_HASER: "ō",
|
|
460
|
+
* });
|
|
461
|
+
* transliterate("עָוֺן֙", schema);
|
|
462
|
+
* // ʿāwōn
|
|
463
|
+
* ```
|
|
464
|
+
*
|
|
465
|
+
* @remarks
|
|
466
|
+
* See {@link holemHaser} for more about this character
|
|
323
467
|
*/
|
|
324
468
|
HOLAM_HASER: string;
|
|
325
469
|
/**
|
|
326
470
|
* HEBREW POINT QUBUTS (U+05BB) ֻ◌
|
|
471
|
+
*
|
|
472
|
+
* @category Vowels
|
|
473
|
+
*
|
|
327
474
|
* @example
|
|
328
|
-
*
|
|
475
|
+
* ```js
|
|
476
|
+
* const schema = new Schema({
|
|
477
|
+
* // truncated for brevity
|
|
478
|
+
* QUBUTS: "u",
|
|
479
|
+
* });
|
|
480
|
+
* transliterate("קֻ֣ם", schema);
|
|
481
|
+
* // qūm
|
|
482
|
+
* ```
|
|
329
483
|
*/
|
|
330
484
|
QUBUTS: string;
|
|
331
485
|
/**
|
|
332
486
|
* HEBREW POINT DAGESH OR MAPIQ (U+05BC) ּ◌
|
|
333
|
-
*
|
|
487
|
+
*
|
|
488
|
+
* @category Marks
|
|
489
|
+
*
|
|
490
|
+
* @example
|
|
491
|
+
* A blank string
|
|
492
|
+
* ```js
|
|
493
|
+
* const schema = new Schema({
|
|
494
|
+
* // truncated for brevity
|
|
495
|
+
* DAGESH: "",
|
|
496
|
+
* });
|
|
497
|
+
* transliterate("כֵּ֑ן", schema);
|
|
498
|
+
* // kēn
|
|
499
|
+
* ```
|
|
500
|
+
*
|
|
334
501
|
* @example
|
|
335
|
-
*
|
|
502
|
+
* A character
|
|
503
|
+
* ```js
|
|
504
|
+
* const schema = new Schema({
|
|
505
|
+
* // truncated for brevity
|
|
506
|
+
* DAGESH: ".",
|
|
507
|
+
* });
|
|
508
|
+
* transliterate("כֵּ֑ן", schema);
|
|
509
|
+
* // k.ēn
|
|
510
|
+
* ```
|
|
511
|
+
*
|
|
512
|
+
* @remarks
|
|
513
|
+
* Typically, this should be a blank string.
|
|
336
514
|
*/
|
|
337
515
|
DAGESH: string;
|
|
338
516
|
/**
|
|
339
517
|
* HEBREW POINT DAGESH OR MAPIQ (U+05BC) ּ◌
|
|
340
518
|
*
|
|
341
|
-
*
|
|
519
|
+
* A string or boolean, and if set to `true`, the consonant with the dagesh is repeated.
|
|
342
520
|
*
|
|
343
|
-
* @
|
|
521
|
+
* @category Marks
|
|
522
|
+
* @category Orthographic Features
|
|
344
523
|
*
|
|
524
|
+
* @example
|
|
525
|
+
* As a string
|
|
345
526
|
* ```js
|
|
346
|
-
*
|
|
347
|
-
*
|
|
527
|
+
* const schema = new Schema({
|
|
528
|
+
* // truncated for brevity
|
|
529
|
+
* DAGESH_CHAZAQ: "\u0301",
|
|
530
|
+
* });
|
|
531
|
+
* transliterate("שַׁבָּת", schema);
|
|
532
|
+
* // šab́āt
|
|
348
533
|
* ```
|
|
349
534
|
*
|
|
350
|
-
* @example
|
|
535
|
+
* @example
|
|
536
|
+
* As a boolean
|
|
351
537
|
* ```js
|
|
352
|
-
*
|
|
353
|
-
*
|
|
538
|
+
* const schema = new Schema({
|
|
539
|
+
* // truncated for brevity
|
|
540
|
+
* DAGESH_CHAZAQ: true,
|
|
541
|
+
* });
|
|
542
|
+
* transliterate("שַׁבָּת", schema);
|
|
543
|
+
* // šabbāt
|
|
354
544
|
* ```
|
|
355
545
|
*/
|
|
356
546
|
DAGESH_CHAZAQ: boolean | string;
|
|
357
547
|
/**
|
|
358
548
|
* HEBREW PUNCTUATION MAQAF (U+05BE) ־◌
|
|
549
|
+
*
|
|
550
|
+
* @category Marks
|
|
551
|
+
* @category Taamim
|
|
552
|
+
*
|
|
359
553
|
* @example
|
|
360
|
-
*
|
|
554
|
+
* ```js
|
|
555
|
+
* const schema = new Schema({
|
|
556
|
+
* // truncated for brevity
|
|
557
|
+
* { MAQAF: "-" }
|
|
558
|
+
* });
|
|
559
|
+
* transliterate("אַל־", schema);
|
|
560
|
+
* // ʾal-
|
|
561
|
+
* ```
|
|
361
562
|
*/
|
|
362
563
|
MAQAF: string;
|
|
363
564
|
/**
|
|
364
565
|
* HEBREW PUNCTUATION PASEQ (U+05C0) ׀ ◌
|
|
365
|
-
*
|
|
366
|
-
* @
|
|
367
|
-
*
|
|
566
|
+
*
|
|
567
|
+
* @category Marks
|
|
568
|
+
*
|
|
368
569
|
* @example
|
|
369
570
|
* ```js
|
|
370
|
-
*
|
|
371
|
-
*
|
|
571
|
+
* const schema = new Schema({
|
|
572
|
+
* // truncated for brevity
|
|
573
|
+
* PASEQ: "",
|
|
574
|
+
})
|
|
575
|
+
* transliterate("כְּשֶׁ֣בֶת ׀ הַמֶּ֣לֶךְ", schema);
|
|
576
|
+
* // kǝšebet hammelek
|
|
372
577
|
* ```
|
|
578
|
+
*
|
|
579
|
+
* @remarks
|
|
580
|
+
* If a blank string, two spaces will occur between words; see example.
|
|
373
581
|
*/
|
|
374
582
|
PASEQ: string;
|
|
375
583
|
/**
|
|
376
584
|
* HEBREW PUNCTUATION SOF PASUQ (U+05C3) ׃◌
|
|
585
|
+
*
|
|
586
|
+
* @category Marks
|
|
587
|
+
* @category Taamim
|
|
588
|
+
*
|
|
377
589
|
* @example
|
|
378
|
-
*
|
|
590
|
+
* ```js
|
|
591
|
+
* const schema = new Schema({
|
|
592
|
+
* // truncated for brevity
|
|
593
|
+
* SOF_PASUQ: ".",
|
|
594
|
+
* });
|
|
595
|
+
* transliterate("הָאָֽרֶץ׃", schema);
|
|
596
|
+
* // hāʾāreṣ.
|
|
597
|
+
* ```
|
|
379
598
|
*/
|
|
380
599
|
SOF_PASUQ: string;
|
|
381
600
|
/**
|
|
382
601
|
* HEBREW POINT QAMATS QATAN (U+05C7) ׇ◌
|
|
602
|
+
*
|
|
603
|
+
* @category Vowels
|
|
604
|
+
*
|
|
383
605
|
* @example
|
|
384
|
-
*
|
|
606
|
+
* ```js
|
|
607
|
+
* const schema = new Schema({
|
|
608
|
+
* // truncated for brevity
|
|
609
|
+
* QAMATS QATAN: "o",
|
|
610
|
+
* });
|
|
611
|
+
* transliterate("כָּל־הָעָ֖ם", schema);
|
|
612
|
+
* // kol-hāʿām
|
|
613
|
+
* ```
|
|
614
|
+
*
|
|
615
|
+
* @remarks
|
|
616
|
+
* See {@link qametsQatan} for details about this character.
|
|
385
617
|
*/
|
|
386
618
|
QAMATS_QATAN: string;
|
|
387
619
|
/**
|
|
388
|
-
* HEBREW POINT PATAH (U+05B7) ◌ַ
|
|
620
|
+
* HEBREW POINT PATAH (U+05B7) ◌ַ as a furtive patah
|
|
621
|
+
*
|
|
622
|
+
* @category Vowels
|
|
623
|
+
* @category Orthographic Features
|
|
624
|
+
*
|
|
389
625
|
* @example
|
|
390
|
-
*
|
|
626
|
+
* ```js
|
|
627
|
+
* const schema = new Schema({
|
|
628
|
+
* // truncated for brevity
|
|
629
|
+
* FURTIVE_PATAH: "a",
|
|
630
|
+
* });
|
|
631
|
+
* transliterate("נֹ֖חַ", schema);
|
|
632
|
+
* // nōaḥ
|
|
633
|
+
* ```
|
|
391
634
|
*/
|
|
392
635
|
FURTIVE_PATAH: string;
|
|
393
636
|
/**
|
|
394
637
|
* HEBREW POINT HIRIQ (U+05B4) and YOD (U+05D9) י◌ִ
|
|
638
|
+
*
|
|
639
|
+
* @category Vowels
|
|
640
|
+
* @category Orthographic Features
|
|
641
|
+
*
|
|
395
642
|
* @example
|
|
396
|
-
*
|
|
643
|
+
* ```js
|
|
644
|
+
* const schema = new Schema({
|
|
645
|
+
* // truncated for brevity
|
|
646
|
+
* HIRIQ_YOD: "î",
|
|
647
|
+
* });
|
|
648
|
+
* transliterate("עִ֔יר", schema);
|
|
649
|
+
* // ʿîr
|
|
650
|
+
* ```
|
|
397
651
|
*/
|
|
398
652
|
HIRIQ_YOD: string;
|
|
399
653
|
/**
|
|
400
654
|
* HEBREW POINT TSERE (U+05B5) and YOD (U+05D9) י◌ֵ
|
|
655
|
+
*
|
|
656
|
+
* @category Vowels
|
|
657
|
+
* @category Orthographic Features
|
|
658
|
+
*
|
|
401
659
|
* @example
|
|
402
|
-
*
|
|
660
|
+
* ```js
|
|
661
|
+
* const schema = new Schema({
|
|
662
|
+
* // truncated for brevity
|
|
663
|
+
* TSERE_YOD: "ê",
|
|
664
|
+
* });
|
|
665
|
+
* transliterate("אֵ֤ין", schema);
|
|
666
|
+
* // ʾên
|
|
667
|
+
* ```
|
|
403
668
|
*/
|
|
404
669
|
TSERE_YOD: string;
|
|
405
670
|
/**
|
|
406
671
|
* HEBREW POINT SEGOL (U+05B6) and YOD (U+05D9) י◌ֶ
|
|
672
|
+
*
|
|
673
|
+
* @category Vowels
|
|
674
|
+
* @category Orthographic Features
|
|
675
|
+
*
|
|
407
676
|
* @example
|
|
408
|
-
*
|
|
677
|
+
* ```js
|
|
678
|
+
* const schema = new Schema({
|
|
679
|
+
* // truncated for brevity
|
|
680
|
+
* SEGOL_YOD: "ê",
|
|
681
|
+
* });
|
|
682
|
+
* transliterate("אֱלֹהֶ֑יךָ", schema);
|
|
683
|
+
* // ʾĕlōhêkā
|
|
684
|
+
* ```
|
|
409
685
|
*/
|
|
410
686
|
SEGOL_YOD: string;
|
|
411
687
|
/**
|
|
412
688
|
* HEBREW LETTER VAV (U+05D5) and DAGESH (U+05BC) וּ
|
|
689
|
+
*
|
|
690
|
+
* @category Vowels
|
|
691
|
+
* @category Orthographic Features
|
|
692
|
+
*
|
|
413
693
|
* @example
|
|
414
|
-
*
|
|
694
|
+
* ```js
|
|
695
|
+
* const schema = new Schema({
|
|
696
|
+
* // truncated for brevity
|
|
697
|
+
* SHUREQ: "û",
|
|
698
|
+
* });
|
|
699
|
+
* transliterate("קוּם", schema);
|
|
700
|
+
* // qûm
|
|
701
|
+
* ```
|
|
415
702
|
*/
|
|
416
703
|
SHUREQ: string;
|
|
417
704
|
/**
|
|
418
705
|
* HEBREW LETTER HOLAM (U+05B9) and VAV (U+05D5) ֹו◌
|
|
706
|
+
*
|
|
707
|
+
* @category Vowels
|
|
708
|
+
* @category Orthographic Features
|
|
709
|
+
*
|
|
419
710
|
* @example
|
|
420
|
-
*
|
|
711
|
+
* ```js
|
|
712
|
+
* const schema = new Schema({
|
|
713
|
+
* // truncated for brevity
|
|
714
|
+
* HOLAM_VAV: "ô",
|
|
715
|
+
* });
|
|
716
|
+
* transliterate("ס֣וֹא", schema);
|
|
717
|
+
* // sôʾ
|
|
718
|
+
* ```
|
|
421
719
|
*/
|
|
422
720
|
HOLAM_VAV: string;
|
|
423
721
|
/**
|
|
424
722
|
* HEBREW POINT QAMATS (U+05B8) and HE (U+05D4) ה◌ָ
|
|
723
|
+
*
|
|
724
|
+
* @category Vowels
|
|
725
|
+
* @category Orthographic Features
|
|
726
|
+
*
|
|
425
727
|
* @example
|
|
426
|
-
*
|
|
728
|
+
* ```js
|
|
729
|
+
* const schema = new Schema({
|
|
730
|
+
* // truncated for brevity
|
|
731
|
+
* QAMATS_HE: "â",
|
|
732
|
+
* });
|
|
733
|
+
* transliterate("עֵצָ֖ה", schema);
|
|
734
|
+
* // ʿēṣâ
|
|
735
|
+
* ```
|
|
427
736
|
*/
|
|
428
737
|
QAMATS_HE: string;
|
|
429
738
|
/**
|
|
430
739
|
* HEBREW POINT SEGOL (U+05B6) and HE (U+05D4) ה◌ֶ
|
|
740
|
+
*
|
|
741
|
+
* @category Vowels
|
|
742
|
+
* @category Orthographic Features
|
|
743
|
+
*
|
|
431
744
|
* @example
|
|
432
|
-
*
|
|
745
|
+
* ```js
|
|
746
|
+
* const schema = new Schema({
|
|
747
|
+
* // truncated for brevity
|
|
748
|
+
* SEGOL_HE: "ê",
|
|
749
|
+
* });
|
|
750
|
+
* transliterate("יִקְרֶ֥ה", schema);
|
|
751
|
+
* // yiqrê
|
|
752
|
+
* ```
|
|
433
753
|
*/
|
|
434
754
|
SEGOL_HE: string;
|
|
435
755
|
/**
|
|
436
756
|
* HEBREW POINT TSERE (U+05B5) and HE (U+05D4) ה◌ֵ
|
|
757
|
+
*
|
|
758
|
+
* @category Vowels
|
|
759
|
+
* @category Orthographic Features
|
|
760
|
+
*
|
|
437
761
|
* @example
|
|
438
|
-
*
|
|
762
|
+
* ```js
|
|
763
|
+
* const schema = new Schema({
|
|
764
|
+
* // truncated for brevity
|
|
765
|
+
* TSERE_HE: "ê",
|
|
766
|
+
* });
|
|
767
|
+
* transliterate("הָאַרְיֵ֔ה", schema);
|
|
768
|
+
* // hāʾaryê
|
|
769
|
+
* ```
|
|
439
770
|
*/
|
|
440
771
|
TSERE_HE: string;
|
|
441
772
|
/**
|
|
442
773
|
* HEBREW LETTER QAMATS (U+05B8) and YOD (U+05D9) and VAV (U+05D5) יו◌ָ
|
|
774
|
+
*
|
|
775
|
+
* @category Vowels
|
|
776
|
+
* @category Orthographic Features
|
|
777
|
+
*
|
|
443
778
|
* @example
|
|
444
|
-
*
|
|
779
|
+
* ```js
|
|
780
|
+
* const schema = new Schema({
|
|
781
|
+
* // truncated for brevity
|
|
782
|
+
* MS_SUFX: ”āyw”,
|
|
783
|
+
* });
|
|
784
|
+
* transliterate("יָדָ֛יו", schema);
|
|
785
|
+
* // yādāyw
|
|
786
|
+
* ```
|
|
445
787
|
*/
|
|
446
788
|
MS_SUFX: string;
|
|
447
789
|
/**
|
|
448
790
|
* HEBREW LETTER ALEF (U+05D0) א
|
|
791
|
+
*
|
|
792
|
+
* @category Consonants
|
|
793
|
+
*
|
|
449
794
|
* @example
|
|
450
|
-
*
|
|
795
|
+
* ```js
|
|
796
|
+
* const schema = new Schema({
|
|
797
|
+
* // truncated for brevity
|
|
798
|
+
* ALEF: "ʾ",
|
|
799
|
+
* });
|
|
800
|
+
* transliterate("אָב", schema);
|
|
801
|
+
* // ʾāb
|
|
802
|
+
* ```
|
|
451
803
|
*/
|
|
452
804
|
ALEF: string;
|
|
453
805
|
/**
|
|
454
806
|
* HEBREW LETTER BET (U+05D1) ב
|
|
807
|
+
*
|
|
808
|
+
* @category Consonants
|
|
809
|
+
*
|
|
455
810
|
* @example
|
|
456
|
-
*
|
|
811
|
+
* ```js
|
|
812
|
+
* const schema = new Schema({
|
|
813
|
+
* // truncated for brevity
|
|
814
|
+
* BET: "b",
|
|
815
|
+
* });
|
|
816
|
+
* transliterate("בְּבֵית", schema);
|
|
817
|
+
* // bǝbêt
|
|
818
|
+
* ```
|
|
457
819
|
*/
|
|
458
820
|
BET: string;
|
|
459
821
|
/**
|
|
460
822
|
* HEBREW LETTER BET (U+05D1) and DAGESH (U+05BC) ּב
|
|
461
|
-
*
|
|
462
|
-
*
|
|
463
|
-
* @
|
|
464
|
-
*
|
|
823
|
+
*
|
|
824
|
+
* @category Consonants
|
|
825
|
+
* @category Orthographic Features
|
|
826
|
+
*
|
|
465
827
|
* @example
|
|
466
|
-
*
|
|
828
|
+
* With only `BET` set
|
|
829
|
+
* ```js
|
|
830
|
+
* const schema = new Schema({
|
|
831
|
+
* // truncated for brevity
|
|
832
|
+
* BET: "b",
|
|
833
|
+
* });
|
|
834
|
+
* transliterate("בְּבֵית", schema);
|
|
835
|
+
* // bǝbêt
|
|
836
|
+
*```
|
|
837
|
+
*
|
|
838
|
+
* @example
|
|
839
|
+
* With `BET` and `BET_DAGESH` set
|
|
840
|
+
* ```js
|
|
841
|
+
* const schema = new Schema({
|
|
842
|
+
* // truncated for brevity
|
|
843
|
+
* BET: "v",
|
|
844
|
+
* BET_DAGESH: "b",
|
|
845
|
+
* });
|
|
846
|
+
* transliterate("בְּבֵית", schema);
|
|
847
|
+
* // bǝvêt
|
|
848
|
+
* ```
|
|
849
|
+
*
|
|
850
|
+
* @remarks
|
|
851
|
+
* The letter bet with a dagesh kal.
|
|
852
|
+
* Use when need to distinguish between spirantized forms
|
|
467
853
|
*/
|
|
468
854
|
BET_DAGESH?: string;
|
|
469
855
|
/**
|
|
470
856
|
* HEBREW LETTER GIMEL (U+05D2) ג
|
|
857
|
+
*
|
|
858
|
+
* @category Consonants
|
|
859
|
+
*
|
|
471
860
|
* @example
|
|
472
|
-
*
|
|
861
|
+
* ```js
|
|
862
|
+
* const schema = new Schema({
|
|
863
|
+
* // truncated for brevity
|
|
864
|
+
* GIMEL: "g",
|
|
865
|
+
* });
|
|
866
|
+
* transliterate("גַּ֣גּ", schema);
|
|
867
|
+
* // gag
|
|
868
|
+
* ```
|
|
473
869
|
*/
|
|
474
870
|
GIMEL: string;
|
|
475
871
|
/**
|
|
476
872
|
* HEBREW LETTER GIMEL (U+05D2) and DAGESH (U+05BC) גּ
|
|
477
|
-
*
|
|
478
|
-
*
|
|
479
|
-
* @
|
|
480
|
-
*
|
|
873
|
+
*
|
|
874
|
+
* @category Consonants
|
|
875
|
+
* @category Orthographic Features
|
|
876
|
+
*
|
|
877
|
+
* @example
|
|
878
|
+
* With only `GIMEL` set
|
|
879
|
+
* ```js
|
|
880
|
+
* const schema = new Schema({
|
|
881
|
+
* // truncated for brevity
|
|
882
|
+
* GIMEL: "g"
|
|
883
|
+
* });
|
|
884
|
+
* transliterate("גַּ֣ג", schema);
|
|
885
|
+
* // gag
|
|
886
|
+
* ```
|
|
887
|
+
*
|
|
481
888
|
* @example
|
|
482
|
-
*
|
|
889
|
+
* With `GIMEL` and `GIMEL_DAGESH` set
|
|
890
|
+
* ```js
|
|
891
|
+
* const schema = new Schema({
|
|
892
|
+
* // truncated for brevity
|
|
893
|
+
* GIMEL: "gh",
|
|
894
|
+
* GIMEL_DAGESH: "g",
|
|
895
|
+
* });
|
|
896
|
+
* transliterate("גַּ֣ג", schema);
|
|
897
|
+
* // gagh
|
|
898
|
+
* ```
|
|
899
|
+
*
|
|
900
|
+
* @remarks
|
|
901
|
+
* The letter gimel with a dagesh kal.
|
|
902
|
+
* Use when need to distinguish between spirantized forms
|
|
483
903
|
*/
|
|
484
904
|
GIMEL_DAGESH?: string;
|
|
485
905
|
/**
|
|
486
906
|
* HEBREW LETTER DALET (U+05D3) ד
|
|
907
|
+
*
|
|
908
|
+
* @category Consonants
|
|
909
|
+
*
|
|
487
910
|
* @example
|
|
488
|
-
*
|
|
911
|
+
* ```js
|
|
912
|
+
* const schema = new Schema({
|
|
913
|
+
* // truncated for brevity
|
|
914
|
+
* DALET: "d",
|
|
915
|
+
* });
|
|
916
|
+
* transliterate("דֹּ֣ד", schema);
|
|
917
|
+
* // dōd
|
|
918
|
+
* ```
|
|
489
919
|
*/
|
|
490
920
|
DALET: string;
|
|
491
921
|
/**
|
|
492
922
|
* HEBREW LETTER DALET (U+05D3) and DAGESH (U+05BC) דּ
|
|
493
|
-
*
|
|
494
|
-
*
|
|
495
|
-
* @
|
|
496
|
-
*
|
|
923
|
+
*
|
|
924
|
+
* @category Consonants
|
|
925
|
+
* @category Orthographic Features
|
|
926
|
+
*
|
|
497
927
|
* @example
|
|
498
|
-
*
|
|
499
|
-
|
|
928
|
+
* With only `DALET` set
|
|
929
|
+
* ```js
|
|
930
|
+
* const schema = new Schema({
|
|
931
|
+
* // truncated for brevity
|
|
932
|
+
* DALET: "d",
|
|
933
|
+
* });
|
|
934
|
+
* transliterate("דֹּ֣ד", schema);
|
|
935
|
+
* // dōd
|
|
936
|
+
* ```
|
|
937
|
+
*
|
|
938
|
+
* @example
|
|
939
|
+
* With `DALET` and `DALET_DAGESH` set
|
|
940
|
+
* ```js
|
|
941
|
+
* const schema = new Schema({
|
|
942
|
+
* // truncated for brevity
|
|
943
|
+
* DALET: "dh",
|
|
944
|
+
* DALET_DAGESH: "d",
|
|
945
|
+
* });
|
|
946
|
+
* transliterate("דֹּ֣ד", schema);
|
|
947
|
+
* // dōdh
|
|
948
|
+
* ```
|
|
949
|
+
*
|
|
950
|
+
* @remarks
|
|
951
|
+
* The letter dalet with a dagesh kal.
|
|
952
|
+
* Ue when need to distinguish between spirantized forms
|
|
953
|
+
*/
|
|
500
954
|
DALET_DAGESH?: string;
|
|
501
955
|
/**
|
|
502
956
|
* HEBREW LETTER HE (U+05D4) ה
|
|
957
|
+
*
|
|
958
|
+
* @category Consonants
|
|
959
|
+
*
|
|
503
960
|
* @example
|
|
504
|
-
*
|
|
961
|
+
* ```js
|
|
962
|
+
* const schema = new Schema({
|
|
963
|
+
* // truncated for brevity
|
|
964
|
+
* HE: "h",
|
|
965
|
+
* });
|
|
966
|
+
* transliterate("הֵ֗ם", schema);
|
|
967
|
+
* // hēm
|
|
968
|
+
* ```
|
|
505
969
|
*/
|
|
506
970
|
HE: string;
|
|
507
971
|
/**
|
|
508
972
|
* HEBREW LETTER VAV (U+05D5) ו
|
|
973
|
+
*
|
|
974
|
+
* @category Consonants
|
|
975
|
+
*
|
|
509
976
|
* @example
|
|
510
|
-
*
|
|
977
|
+
* ```js
|
|
978
|
+
* const schema = new Schema({
|
|
979
|
+
* // truncated for brevity
|
|
980
|
+
* VAV: "w",
|
|
981
|
+
* });
|
|
982
|
+
* transliterate("וָוִ֖ים", schema);
|
|
983
|
+
* // wāwîm
|
|
984
|
+
* ```
|
|
511
985
|
*/
|
|
512
986
|
VAV: string;
|
|
513
987
|
/**
|
|
514
988
|
* HEBREW LETTER ZAYIN (U+05D6) ז
|
|
989
|
+
*
|
|
990
|
+
* @category Consonants
|
|
991
|
+
*
|
|
515
992
|
* @example
|
|
516
|
-
*
|
|
993
|
+
* ```js
|
|
994
|
+
* const schema = new Schema({
|
|
995
|
+
* // truncated for brevity
|
|
996
|
+
* ZAYIN: "z",
|
|
997
|
+
* });
|
|
998
|
+
* transliterate("זֵ֣ד", schema);
|
|
999
|
+
* // zēd
|
|
1000
|
+
* ```
|
|
517
1001
|
*/
|
|
518
1002
|
ZAYIN: string;
|
|
519
1003
|
/**
|
|
520
1004
|
* HEBREW LETTER HET (U+05D7) ח
|
|
1005
|
+
*
|
|
1006
|
+
* @category Consonants
|
|
1007
|
+
*
|
|
521
1008
|
* @example
|
|
522
|
-
*
|
|
1009
|
+
* ```js
|
|
1010
|
+
* const schema = new Schema({
|
|
1011
|
+
* // truncated for brevity
|
|
1012
|
+
* HET: "ḥ"
|
|
1013
|
+
* });
|
|
1014
|
+
* transliterate("חַ֣ג", schema);
|
|
1015
|
+
* // ḥag
|
|
1016
|
+
* ```
|
|
523
1017
|
*/
|
|
524
1018
|
HET: string;
|
|
525
1019
|
/**
|
|
526
1020
|
* HEBREW LETTER TET (U+05D8) ט
|
|
1021
|
+
*
|
|
1022
|
+
* @category Consonants
|
|
1023
|
+
*
|
|
527
1024
|
* @example
|
|
528
|
-
*
|
|
1025
|
+
* ```js
|
|
1026
|
+
* const schema = new Schema({
|
|
1027
|
+
* // truncated for brevity
|
|
1028
|
+
* TET: "ṭ",
|
|
1029
|
+
* });
|
|
1030
|
+
* transliterate("טִֽיט", schema);
|
|
1031
|
+
* // ṭîṭ
|
|
1032
|
+
* ```
|
|
529
1033
|
*/
|
|
530
1034
|
TET: string;
|
|
531
1035
|
/**
|
|
532
1036
|
* HEBREW LETTER YOD (U+05D9) י
|
|
1037
|
+
*
|
|
1038
|
+
* @category Consonants
|
|
1039
|
+
*
|
|
533
1040
|
* @example
|
|
534
|
-
*
|
|
1041
|
+
* ```js
|
|
1042
|
+
* const schema = new Schema({
|
|
1043
|
+
* // truncated for brevity
|
|
1044
|
+
* YOD: "y",
|
|
1045
|
+
* });
|
|
1046
|
+
* transliterate("יָ֗ד", schema);
|
|
1047
|
+
* // yād
|
|
1048
|
+
* ```
|
|
535
1049
|
*/
|
|
536
1050
|
YOD: string;
|
|
537
1051
|
/**
|
|
538
1052
|
* HEBREW LETTER FINAL KAF (U+05DA) ך
|
|
1053
|
+
*
|
|
1054
|
+
* @category Consonants
|
|
1055
|
+
*
|
|
539
1056
|
* @example
|
|
540
|
-
*
|
|
1057
|
+
* ```js
|
|
1058
|
+
* const schema = new Schema({
|
|
1059
|
+
* // truncated for brevity
|
|
1060
|
+
* FINAL KAF: "k",
|
|
1061
|
+
* });
|
|
1062
|
+
* transliterate("לֶךְ", schema);
|
|
1063
|
+
* // lek
|
|
1064
|
+
* ```
|
|
541
1065
|
*/
|
|
542
1066
|
FINAL_KAF: string;
|
|
543
1067
|
/**
|
|
544
1068
|
* HEBREW LETTER KAF (U+05DB) כ
|
|
1069
|
+
*
|
|
1070
|
+
* @category Consonants
|
|
1071
|
+
*
|
|
545
1072
|
* @example
|
|
546
|
-
*
|
|
1073
|
+
* ```js
|
|
1074
|
+
* const schema = new Schema({
|
|
1075
|
+
* // truncated for brevity
|
|
1076
|
+
* KAF: "k",
|
|
1077
|
+
* });
|
|
1078
|
+
* transliterate("כָּ֚כָה", schema);
|
|
1079
|
+
* // kākâ
|
|
1080
|
+
* ```
|
|
547
1081
|
*/
|
|
548
1082
|
KAF: string;
|
|
549
1083
|
/**
|
|
550
1084
|
* HEBREW LETTER KAF (U+05DB) and DAGESH (U+05BC) כּ
|
|
551
|
-
*
|
|
552
|
-
*
|
|
553
|
-
* @
|
|
554
|
-
*
|
|
1085
|
+
*
|
|
1086
|
+
* @category Consonants
|
|
1087
|
+
* @category Orthographic Features
|
|
1088
|
+
*
|
|
555
1089
|
* @example
|
|
556
|
-
*
|
|
1090
|
+
* With only `KAF` set
|
|
1091
|
+
* ```js
|
|
1092
|
+
* const schema = new Schema({
|
|
1093
|
+
* // truncated for brevity
|
|
1094
|
+
* KAF: "k",
|
|
1095
|
+
* });
|
|
1096
|
+
* transliterate("כָּ֚כָה", schema);
|
|
1097
|
+
* // kākâ
|
|
1098
|
+
* ```
|
|
1099
|
+
*
|
|
1100
|
+
* @example
|
|
1101
|
+
* With `KAF` set and `KAF_DAGESH` set
|
|
1102
|
+
* ```js
|
|
1103
|
+
* const schema = new Schema({
|
|
1104
|
+
* // truncated for brevity
|
|
1105
|
+
* KAF: "kh",
|
|
1106
|
+
* KAF_DAGESH: "k",
|
|
1107
|
+
* });
|
|
1108
|
+
* transliterate("כָּ֚כָה", schema);
|
|
1109
|
+
* // kākhâ
|
|
1110
|
+
* ```
|
|
1111
|
+
*
|
|
1112
|
+
* @remarks
|
|
1113
|
+
* The letter kaf with a dagesh kal.
|
|
1114
|
+
* Use when need to distinguish between spirantized forms
|
|
557
1115
|
*/
|
|
558
1116
|
KAF_DAGESH?: string;
|
|
559
1117
|
/**
|
|
560
1118
|
* HEBREW LETTER LAMED (U+05DC) ל
|
|
1119
|
+
*
|
|
1120
|
+
* @category Consonants
|
|
1121
|
+
*
|
|
561
1122
|
* @example
|
|
562
|
-
*
|
|
1123
|
+
* ```js
|
|
1124
|
+
* const schema = new Schema({
|
|
1125
|
+
* // truncated for brevity
|
|
1126
|
+
* LAMED: "l",
|
|
1127
|
+
* });
|
|
1128
|
+
* transliterate("עַל", schema);
|
|
1129
|
+
* // ʿal
|
|
1130
|
+
* ```
|
|
563
1131
|
*/
|
|
564
1132
|
LAMED: string;
|
|
565
1133
|
/**
|
|
566
1134
|
* HEBREW LETTER FINAL MEM (U+05DD) ם
|
|
1135
|
+
*
|
|
1136
|
+
* @category Consonants
|
|
1137
|
+
*
|
|
567
1138
|
* @example
|
|
568
|
-
*
|
|
1139
|
+
* ```js
|
|
1140
|
+
* const schema = new Schema({
|
|
1141
|
+
* // truncated for brevity
|
|
1142
|
+
* FINAL MEM: "m",
|
|
1143
|
+
* });
|
|
1144
|
+
* transliterate("מַ֖יִם", schema);
|
|
1145
|
+
* // mayim
|
|
1146
|
+
* ```
|
|
569
1147
|
*/
|
|
570
1148
|
FINAL_MEM: string;
|
|
571
1149
|
/**
|
|
572
1150
|
* HEBREW LETTER MEM (U+05DE) מ
|
|
1151
|
+
*
|
|
1152
|
+
* @category Consonants
|
|
1153
|
+
*
|
|
573
1154
|
* @example
|
|
574
|
-
*
|
|
1155
|
+
* ```js
|
|
1156
|
+
* const schema = new Schema({
|
|
1157
|
+
* // truncated for brevity
|
|
1158
|
+
* MEM: "m",
|
|
1159
|
+
* });
|
|
1160
|
+
* transliterate("מַ֖יִם", schema);
|
|
1161
|
+
* // mayim
|
|
1162
|
+
* ```
|
|
575
1163
|
*/
|
|
576
1164
|
MEM: string;
|
|
577
1165
|
/**
|
|
578
1166
|
* HEBREW LETTER FINAL NUN (U+05DF) ן
|
|
1167
|
+
*
|
|
1168
|
+
* @category Consonants
|
|
1169
|
+
*
|
|
579
1170
|
* @example
|
|
580
|
-
*
|
|
1171
|
+
* ```js
|
|
1172
|
+
* const schema = new Schema({
|
|
1173
|
+
* // truncated for brevity
|
|
1174
|
+
* FINAL NUN: "n",
|
|
1175
|
+
* });
|
|
1176
|
+
* transliterate("נ֔וּן", schema);
|
|
1177
|
+
* // nûn
|
|
1178
|
+
* ```
|
|
581
1179
|
*/
|
|
582
1180
|
FINAL_NUN: string;
|
|
583
1181
|
/**
|
|
584
1182
|
* HEBREW LETTER NUN (U+05E0) נ
|
|
1183
|
+
*
|
|
1184
|
+
* @category Consonants
|
|
1185
|
+
*
|
|
585
1186
|
* @example
|
|
586
|
-
*
|
|
1187
|
+
* ```js
|
|
1188
|
+
* const schema = new Schema({
|
|
1189
|
+
* // truncated for brevity
|
|
1190
|
+
* NUN: "n",
|
|
1191
|
+
* });
|
|
1192
|
+
* transliterate("נ֔וּן", schema);
|
|
1193
|
+
* // nûn
|
|
1194
|
+
* ```
|
|
587
1195
|
*/
|
|
588
1196
|
NUN: string;
|
|
589
1197
|
/**
|
|
590
1198
|
* HEBREW LETTER SAMEKH (U+05E1) ס
|
|
1199
|
+
*
|
|
1200
|
+
* @category Consonants
|
|
1201
|
+
*
|
|
591
1202
|
* @example
|
|
592
|
-
*
|
|
1203
|
+
* ```js
|
|
1204
|
+
* const schema = new Schema({
|
|
1205
|
+
* // truncated for brevity
|
|
1206
|
+
* SAMEKH: "s",
|
|
1207
|
+
* });
|
|
1208
|
+
* transliterate("ס֥וּס", schema);
|
|
1209
|
+
* // sûs
|
|
1210
|
+
* ```
|
|
593
1211
|
*/
|
|
594
1212
|
SAMEKH: string;
|
|
595
1213
|
/**
|
|
596
1214
|
* HEBREW LETTER AYIN (U+05E2) ע
|
|
1215
|
+
*
|
|
1216
|
+
* @category Consonants
|
|
1217
|
+
*
|
|
597
1218
|
* @example
|
|
598
|
-
*
|
|
1219
|
+
* ```js
|
|
1220
|
+
* const schema = new Schema({
|
|
1221
|
+
* // truncated for brevity
|
|
1222
|
+
* AYIN: "ʿ",
|
|
1223
|
+
* });
|
|
1224
|
+
* transliterate("עָ֑יִן", schema);
|
|
1225
|
+
* // ʿāyin
|
|
1226
|
+
* ```
|
|
599
1227
|
*/
|
|
600
1228
|
AYIN: string;
|
|
601
1229
|
/**
|
|
602
1230
|
* HEBREW LETTER FINAL PE (U+05E3) ף
|
|
1231
|
+
*
|
|
1232
|
+
* @category Consonants
|
|
1233
|
+
*
|
|
603
1234
|
* @example
|
|
604
|
-
*
|
|
1235
|
+
* ```js
|
|
1236
|
+
* const schema = new Schema({
|
|
1237
|
+
* // truncated for brevity
|
|
1238
|
+
* FINAL PE: "p",
|
|
1239
|
+
* });
|
|
1240
|
+
* transliterate("כַּ֣ף", schema);
|
|
1241
|
+
* // kap
|
|
1242
|
+
* ```
|
|
605
1243
|
*/
|
|
606
1244
|
FINAL_PE: string;
|
|
607
1245
|
/**
|
|
608
1246
|
* HEBREW LETTER PE (U+05E4) פ
|
|
1247
|
+
*
|
|
1248
|
+
* @category Consonants
|
|
1249
|
+
*
|
|
609
1250
|
* @example
|
|
610
|
-
*
|
|
1251
|
+
* ```js
|
|
1252
|
+
* const schema = new Schema({
|
|
1253
|
+
* // truncated for brevity
|
|
1254
|
+
* PE: "p",
|
|
1255
|
+
* });
|
|
1256
|
+
* transliterate("פֶּ֣רֶא חָפְשִׁ֑י", schema);
|
|
1257
|
+
* // pereʾ ḥopšî
|
|
1258
|
+
* ```
|
|
611
1259
|
*/
|
|
612
1260
|
PE: string;
|
|
613
1261
|
/**
|
|
614
1262
|
* HEBREW LETTER PE (U+05E4) and DAGESH (U+05BC) פּ
|
|
615
|
-
*
|
|
616
|
-
*
|
|
617
|
-
* @
|
|
618
|
-
*
|
|
1263
|
+
*
|
|
1264
|
+
* @category Consonants
|
|
1265
|
+
* @category Orthographic Features
|
|
1266
|
+
*
|
|
619
1267
|
* @example
|
|
620
|
-
*
|
|
1268
|
+
* With only `PE` set
|
|
1269
|
+
* ```js
|
|
1270
|
+
* const schema = new Schema({
|
|
1271
|
+
* // truncated for brevity
|
|
1272
|
+
* PE_DAGESH: "p",
|
|
1273
|
+
* });
|
|
1274
|
+
* transliterate("פֶּ֣רֶא חָפְשִׁ֑י", schema);
|
|
1275
|
+
* // pereʾ ḥopšî
|
|
1276
|
+
* ```
|
|
1277
|
+
*
|
|
1278
|
+
* @example
|
|
1279
|
+
* With `PE` and `PE_DAGESH` set
|
|
1280
|
+
* ```js
|
|
1281
|
+
* const schema = new Schema({
|
|
1282
|
+
* // truncated for brevity
|
|
1283
|
+
* PE: "f",
|
|
1284
|
+
* PE_DAGESH: "p",
|
|
1285
|
+
* });
|
|
1286
|
+
* transliterate("פֶּ֣רֶא חָפְשִׁ֑י", schema);
|
|
1287
|
+
* // pereʾ ḥofšî
|
|
1288
|
+
* ```
|
|
1289
|
+
*
|
|
1290
|
+
* @remarks
|
|
1291
|
+
* The letter pe with a dagesh kal
|
|
1292
|
+
* Use when need to distinguish between spirantized forms
|
|
621
1293
|
*/
|
|
622
1294
|
PE_DAGESH?: string;
|
|
623
1295
|
/**
|
|
624
1296
|
* HEBREW LETTER FINAL TSADI (U+05E5) ץ
|
|
1297
|
+
*
|
|
1298
|
+
* @category Consonants
|
|
1299
|
+
*
|
|
625
1300
|
* @example
|
|
626
|
-
*
|
|
1301
|
+
* ```js
|
|
1302
|
+
* const schema = new Schema({
|
|
1303
|
+
* // truncated for brevity
|
|
1304
|
+
* FINAL TSADI: "ṣ",
|
|
1305
|
+
* });
|
|
1306
|
+
* transliterate("צָ֚ץ", schema);
|
|
1307
|
+
* // ṣāṣ
|
|
1308
|
+
* ```
|
|
627
1309
|
*/
|
|
628
1310
|
FINAL_TSADI: string;
|
|
629
1311
|
/**
|
|
630
1312
|
* HEBREW LETTER TSADI (U+05E6) צ
|
|
1313
|
+
*
|
|
1314
|
+
* @category Consonants
|
|
1315
|
+
*
|
|
631
1316
|
* @example
|
|
632
|
-
*
|
|
1317
|
+
* ```js
|
|
1318
|
+
* const schema = new Schema({
|
|
1319
|
+
* // truncated for brevity
|
|
1320
|
+
* TSADI: "ṣ",
|
|
1321
|
+
* });
|
|
1322
|
+
* transliterate("צָ֚ץ", schema);
|
|
1323
|
+
* // ṣāṣ
|
|
1324
|
+
* ```
|
|
633
1325
|
*/
|
|
634
1326
|
TSADI: string;
|
|
635
1327
|
/**
|
|
636
1328
|
* HEBREW LETTER QOF (U+05E7) ק
|
|
1329
|
+
*
|
|
1330
|
+
* @category Consonants
|
|
1331
|
+
*
|
|
637
1332
|
* @example
|
|
638
|
-
*
|
|
1333
|
+
* ```js
|
|
1334
|
+
* const schema = new Schema({
|
|
1335
|
+
* // truncated for brevity
|
|
1336
|
+
* QOF: "q",
|
|
1337
|
+
* });
|
|
1338
|
+
* transliterate("רַ֥ק", schema);
|
|
1339
|
+
* // raq
|
|
1340
|
+
* ```
|
|
639
1341
|
*/
|
|
640
1342
|
QOF: string;
|
|
641
1343
|
/**
|
|
642
1344
|
* HEBREW LETTER RESH (U+05E8) ר
|
|
1345
|
+
*
|
|
1346
|
+
* @category Consonants
|
|
1347
|
+
*
|
|
643
1348
|
* @example
|
|
644
|
-
*
|
|
1349
|
+
* ```js
|
|
1350
|
+
* const schema = new Schema({
|
|
1351
|
+
* // truncated for brevity
|
|
1352
|
+
* RESH: "r",
|
|
1353
|
+
* });
|
|
1354
|
+
* transliterate("רַ֥ק", schema);
|
|
1355
|
+
* // raq
|
|
1356
|
+
* ```
|
|
645
1357
|
*/
|
|
646
1358
|
RESH: string;
|
|
647
1359
|
/**
|
|
648
1360
|
* HEBREW LETTER SHIN (U+05E9) and SHIN DOT (U+05C1) שׁ
|
|
1361
|
+
*
|
|
1362
|
+
* @category Consonants
|
|
1363
|
+
* @category Orthographic Features
|
|
1364
|
+
*
|
|
649
1365
|
* @example
|
|
650
|
-
*
|
|
1366
|
+
* ```js
|
|
1367
|
+
* const schema = new Schema({
|
|
1368
|
+
* // truncated for brevity
|
|
1369
|
+
* SHIN: "š",
|
|
1370
|
+
* });
|
|
1371
|
+
* transliterate("שֵׁ֖ן", schema);
|
|
1372
|
+
* // šēn
|
|
1373
|
+
* ```
|
|
651
1374
|
*/
|
|
652
1375
|
SHIN: string;
|
|
653
1376
|
/**
|
|
654
1377
|
* HEBREW LETTER SHIN (U+05E9) and SIN DOT (U+05C2) שׁ
|
|
1378
|
+
*
|
|
1379
|
+
* @category Consonants
|
|
1380
|
+
* @category Orthographic Features
|
|
1381
|
+
*
|
|
655
1382
|
* @example
|
|
656
|
-
*
|
|
1383
|
+
* ```js
|
|
1384
|
+
* const schema = new Schema({
|
|
1385
|
+
* // truncated for brevity
|
|
1386
|
+
* SIN: "ś",
|
|
1387
|
+
* });
|
|
1388
|
+
* transliterate("כַּשְׂדִּ֔ים", schema);
|
|
1389
|
+
* // kaśdîm
|
|
1390
|
+
* ```
|
|
657
1391
|
*/
|
|
658
1392
|
SIN: string;
|
|
659
1393
|
/**
|
|
660
1394
|
* HEBREW LETTER TAV (U+05EA) ת
|
|
1395
|
+
*
|
|
1396
|
+
* @category Consonants
|
|
1397
|
+
*
|
|
661
1398
|
* @example
|
|
662
|
-
*
|
|
1399
|
+
* ```js
|
|
1400
|
+
* const schema = new Schema({
|
|
1401
|
+
* // truncated for brevity
|
|
1402
|
+
* TAV: "t",
|
|
1403
|
+
* });
|
|
1404
|
+
* transliterate("תֵּ֛ת", schema);
|
|
1405
|
+
* // tēt
|
|
1406
|
+
* ```
|
|
663
1407
|
*/
|
|
664
1408
|
TAV: string;
|
|
665
1409
|
/**
|
|
666
1410
|
* HEBREW LETTER TAV (U+05EA) and DAGESH (U+05BC) תּ
|
|
667
|
-
*
|
|
668
|
-
*
|
|
669
|
-
* @
|
|
670
|
-
*
|
|
1411
|
+
*
|
|
1412
|
+
* @category Consonants
|
|
1413
|
+
* @category Orthographic Features
|
|
1414
|
+
*
|
|
671
1415
|
* @example
|
|
672
|
-
*
|
|
1416
|
+
* With only `TAV` set
|
|
1417
|
+
* ```js
|
|
1418
|
+
* const schema = new Schema({
|
|
1419
|
+
* // truncated for brevity
|
|
1420
|
+
* TAV: "t",
|
|
1421
|
+
* });
|
|
1422
|
+
* transliterate("תֵּ֛ת", schema);
|
|
1423
|
+
* // tēt
|
|
1424
|
+
* ```
|
|
1425
|
+
*
|
|
1426
|
+
* @example
|
|
1427
|
+
* With `TAV` and `TAV_DAGESH` set
|
|
1428
|
+
* ```js
|
|
1429
|
+
* const schema = new Schema({
|
|
1430
|
+
* // truncated for brevity
|
|
1431
|
+
* TAV: "th",
|
|
1432
|
+
* TAV_DAGESH: "t",
|
|
1433
|
+
* });
|
|
1434
|
+
* transliterate("תֵּ֛ת", schema);
|
|
1435
|
+
* // tēth
|
|
1436
|
+
* ```
|
|
1437
|
+
*
|
|
1438
|
+
* @remarks
|
|
1439
|
+
* The letter tav with a dagesh kal.
|
|
1440
|
+
* Use when need to distinguish between spirantized forms
|
|
673
1441
|
*/
|
|
674
1442
|
TAV_DAGESH?: string;
|
|
675
1443
|
/**
|
|
676
|
-
*
|
|
1444
|
+
* Rules for customized output
|
|
1445
|
+
*
|
|
1446
|
+
* This property is an array of objects with the following properties each:
|
|
1447
|
+
* - `FEATURE`: the type of feature that the rule is checking — "word", "syllable", or "cluster"
|
|
1448
|
+
* - `HEBREW`: the Hebrew text that the rule matches, given as a string or Regex
|
|
1449
|
+
* - `PASS_THROUGH?`: An optional property; `true` if the rule should pass the characters of the result of the `TRANSLITERATION` callback to the be mapped to the schema
|
|
1450
|
+
* - `TRANSLITERATION`: the output of the rule, either a string or a callback whose properties differ based on the `FEATURE`
|
|
1451
|
+
*
|
|
1452
|
+
* The examples give the best indication of how to use these features, though see the particular types for more details
|
|
1453
|
+
*
|
|
1454
|
+
* @category Orthographic Features
|
|
1455
|
+
*
|
|
1456
|
+
* @example
|
|
1457
|
+
* `FEATURE` is `"word"` and `TRANSLITERATION` is a string
|
|
1458
|
+
* ```js
|
|
1459
|
+
* const schema = new Schema({
|
|
1460
|
+
* // truncated for brevity
|
|
1461
|
+
* ADDITIONAL_FEATURES: [{
|
|
1462
|
+
* FEATURE: "word",
|
|
1463
|
+
* HEBREW: "הָאָרֶץ",
|
|
1464
|
+
* TRANSLITERATION: "The Earth"
|
|
1465
|
+
* }]
|
|
1466
|
+
})
|
|
1467
|
+
* transliterate("וְאֵ֥ת הָאָֽרֶץ", schema);
|
|
1468
|
+
* // wǝʾēt The Earth
|
|
1469
|
+
* ```
|
|
1470
|
+
*
|
|
1471
|
+
* @example
|
|
1472
|
+
* `FEATURE` is `"word"` and `TRANSLITERATION` is a callback
|
|
1473
|
+
* ```js
|
|
1474
|
+
* const schema = new Schema({
|
|
1475
|
+
* // truncated for brevity
|
|
1476
|
+
* ADDITIONAL_FEATURES: [{
|
|
1477
|
+
* HEBREW: "שְׁתַּיִם",
|
|
1478
|
+
* FEATURE: "word",
|
|
1479
|
+
* TRANSLITERATION: function (_word, _hebrew, schema) {
|
|
1480
|
+
* return (
|
|
1481
|
+
* schema["SHIN"] +
|
|
1482
|
+
* (schema["TAV_DAGESH"] ?? schema["TAV"]) +
|
|
1483
|
+
* schema["PATAH"] +
|
|
1484
|
+
* schema["YOD"] +
|
|
1485
|
+
* schema["HIRIQ"] +
|
|
1486
|
+
* schema["FINAL_MEM"]
|
|
1487
|
+
* );
|
|
1488
|
+
* }
|
|
1489
|
+
* }]
|
|
1490
|
+
* });
|
|
1491
|
+
* transliterate("שְׁתַּיִם", schema);
|
|
1492
|
+
* // štayim
|
|
1493
|
+
* ```
|
|
1494
|
+
* @example
|
|
1495
|
+
* `FEATURE` is `"syllable"` and `TRANSLITERATION` is a string
|
|
1496
|
+
* ```js
|
|
1497
|
+
* const schema = new Schema({
|
|
1498
|
+
* // truncated for brevity
|
|
1499
|
+
* ADDITIONAL_FEATURES: [{
|
|
1500
|
+
* FEATURE: "syllable",
|
|
1501
|
+
* HEBREW: /יּ(?![\u{05B4}-\u{05BB}])/u, // a yod with a dagesh, not followed by a vowel character
|
|
1502
|
+
* TRANSLITERATION: "Y"
|
|
1503
|
+
* }]
|
|
1504
|
+
* });
|
|
1505
|
+
* transliterate("מְחִיּיָאֵ֗ל", schema);
|
|
1506
|
+
* // mǝḥiYyāʾēl
|
|
1507
|
+
* ```
|
|
677
1508
|
*
|
|
678
|
-
*
|
|
1509
|
+
* @example
|
|
1510
|
+
* `FEATURE` is `"syllable"` and `TRANSLITERATION` is a callback
|
|
1511
|
+
* ```js
|
|
1512
|
+
* const schema = new Schema({
|
|
1513
|
+
* // truncated for brevity
|
|
1514
|
+
* ADDITIONAL_FEATURES: [{
|
|
1515
|
+
* FEATURE: "syllable",
|
|
1516
|
+
* HEBREW: /\u{05C7}/u,
|
|
1517
|
+
* TRANSLITERATION: (syllable) => {
|
|
1518
|
+
* // If the syllable contains a qamets qatan character (U+05C7), check the text of the next syllable
|
|
1519
|
+
* const next = syllable?.next?.value?.text;
|
|
1520
|
+
*
|
|
1521
|
+
* // If the next syllable includes a hateph qamets, then replace the qamets qatan with a regular qamets
|
|
1522
|
+
* if (next && next.includes("\u05B3")) {
|
|
1523
|
+
* return syllable.text.replace("\u{05C7}", "\u{05B8}");
|
|
1524
|
+
* }
|
|
1525
|
+
* return syllable.text;
|
|
1526
|
+
* }
|
|
1527
|
+
* }]
|
|
1528
|
+
* });
|
|
1529
|
+
* transliterate("נָעֳמִי֙", schema);
|
|
1530
|
+
* // nāʿŏmî
|
|
1531
|
+
* ```
|
|
679
1532
|
*
|
|
680
1533
|
* @example
|
|
681
|
-
*
|
|
682
|
-
*
|
|
683
|
-
*
|
|
684
|
-
*
|
|
685
|
-
*
|
|
1534
|
+
* `FEATURE` is `"cluster"` and `TRANSLITERATION` is a string
|
|
1535
|
+
* ```js
|
|
1536
|
+
* const schema = new Schema({
|
|
1537
|
+
* // truncated for brevity
|
|
1538
|
+
* ADDITIONAL_FEATURES: [{
|
|
1539
|
+
* FEATURE: "cluster",
|
|
1540
|
+
* HEBREW: "זּ",
|
|
1541
|
+
* TRANSLITERATION: "tz"
|
|
1542
|
+
* }]
|
|
1543
|
+
* });;
|
|
1544
|
+
* transliterate("הַזֹּאת", schema);
|
|
1545
|
+
* // hatzōʾt
|
|
1546
|
+
* ```
|
|
1547
|
+
*
|
|
1548
|
+
* @example
|
|
1549
|
+
* `FEATURE` is "cluster" and `TRANSLITERATION` is a callback
|
|
1550
|
+
* ```js
|
|
1551
|
+
* const schema = new Schema({
|
|
1552
|
+
* // truncated for brevity
|
|
1553
|
+
* TAV_DAGESH: "tʰ",,
|
|
1554
|
+
* ADDITIONAL_FEATURES: [{
|
|
1555
|
+
* FEATURE: 'cluster',
|
|
1556
|
+
* HEBREW: /תּ(?!\u{05B0})/u,
|
|
1557
|
+
* TRANSLITERATION: (cluster, _, schema) => {
|
|
1558
|
+
* // Because the *_DAGESH value is a digraph, we need to replace the first character
|
|
1559
|
+
* // or it will be doubled in rules.ts as "tʰtʰ"
|
|
1560
|
+
*
|
|
1561
|
+
*
|
|
1562
|
+
* // If there is a dagesh, but it is the beginning of the word
|
|
1563
|
+
* // we can return the text, as the character w/ the dagesh will not be doubled
|
|
1564
|
+
* if (!cluster.prev || cluster.prev.value?.isNotHebrew) {
|
|
1565
|
+
* return cluster.text;
|
|
1566
|
+
* }
|
|
1567
|
+
*
|
|
1568
|
+
* // If there is a dagesh, it may be that it is a dagesh qal (i.e. lene)
|
|
1569
|
+
* // If it is a dagesh lene, then like the beginning of the word,
|
|
1570
|
+
* // the character w/ the dagesh will not be doubled
|
|
1571
|
+
* const prevCoda = cluster.syllable?.prev?.value?.codaWithGemination;
|
|
1572
|
+
* if (!prevCoda?.includes("ת",)) {
|
|
1573
|
+
* return cluster.text;
|
|
1574
|
+
* }
|
|
1575
|
+
*
|
|
1576
|
+
* // convert "tʰtʰ" to "ttʰ"
|
|
1577
|
+
* const noAspiration = schema['TAV_DAGESH']?.replace("ʰ",, '') ?? '';
|
|
1578
|
+
* return cluster.text.replace("תּ",,`${noAspiration + schema['TAV_DAGESH']}`);
|
|
1579
|
+
* },
|
|
1580
|
+
* }]
|
|
1581
|
+
* });
|
|
1582
|
+
* transliterate("וַתֵּ֨שֶׁב", schema);
|
|
1583
|
+
* // wattʰēšeb
|
|
1584
|
+
* ```
|
|
1585
|
+
*
|
|
686
1586
|
*/
|
|
687
|
-
ADDITIONAL_FEATURES?:
|
|
1587
|
+
ADDITIONAL_FEATURES?: (WordFeature | SyllableFeature | ClusterFeature)[];
|
|
688
1588
|
/**
|
|
689
|
-
*
|
|
1589
|
+
* The full form of the divine name - יהוה
|
|
1590
|
+
*
|
|
1591
|
+
* @category Orthographic Features
|
|
1592
|
+
*
|
|
690
1593
|
* @example
|
|
691
|
-
*
|
|
1594
|
+
* ```js
|
|
1595
|
+
* const schema = new Schema({
|
|
1596
|
+
* // truncated for brevity
|
|
1597
|
+
* DIVINE_NAME: "yhwh",
|
|
1598
|
+
* });
|
|
1599
|
+
* transliterate("יְהֹוָ֗ה", schema);
|
|
1600
|
+
* // yhwh
|
|
1601
|
+
* ```
|
|
692
1602
|
*/
|
|
693
1603
|
DIVINE_NAME: string;
|
|
694
1604
|
/**
|
|
695
|
-
*
|
|
1605
|
+
* The full form of the divine name pointed as 'elohim
|
|
1606
|
+
*
|
|
1607
|
+
* @category Orthographic Features
|
|
696
1608
|
*
|
|
697
|
-
* @
|
|
698
|
-
*
|
|
1609
|
+
* @example
|
|
1610
|
+
* ```js
|
|
1611
|
+
* const schema = new Schema({
|
|
1612
|
+
* // truncated for brevity
|
|
1613
|
+
* DIVINE_NAME_ELOHIM: "ʾĕlōhîm",
|
|
1614
|
+
* });
|
|
1615
|
+
* transliterate("יֱהֹוִה", schema);
|
|
1616
|
+
* // ʾĕlōhîm
|
|
1617
|
+
* ```
|
|
1618
|
+
*
|
|
1619
|
+
* @remarks
|
|
1620
|
+
* Matches on the forms:
|
|
699
1621
|
* - יֱהֹוִה
|
|
700
1622
|
* - יֱהוִה
|
|
701
1623
|
* - יְהֹוִה
|
|
702
1624
|
* - יְהוִה
|
|
703
|
-
*
|
|
704
|
-
* If undefined, defaults to `DIVINE_NAME`
|
|
705
|
-
*
|
|
706
|
-
* @example
|
|
707
|
-
* 'ʾelōhim'
|
|
1625
|
+
* If `undefined`, defaults to value of {@link DIVINE_NAME}
|
|
708
1626
|
*/
|
|
709
1627
|
DIVINE_NAME_ELOHIM?: string;
|
|
710
1628
|
/**
|
|
711
|
-
*
|
|
712
|
-
*
|
|
713
|
-
*
|
|
1629
|
+
* A syllable separator, usually an empty string
|
|
1630
|
+
*
|
|
1631
|
+
* @category Orthographic Features
|
|
1632
|
+
*
|
|
714
1633
|
* @example
|
|
715
1634
|
* ```js
|
|
716
|
-
*
|
|
717
|
-
*
|
|
1635
|
+
* const schema = new Schema({
|
|
1636
|
+
* // truncated for brevity
|
|
1637
|
+
* SYLLABLE_SEPARATOR: "-",
|
|
1638
|
+
* });
|
|
1639
|
+
* transliterate('הָאָֽרֶץ', schema);
|
|
1640
|
+
* // hā-ʾā-reṣ
|
|
718
1641
|
* ```
|
|
719
1642
|
*/
|
|
720
1643
|
SYLLABLE_SEPARATOR?: string;
|
|
721
1644
|
/**
|
|
722
|
-
*
|
|
1645
|
+
* A mark for indentifying the stressed syllable
|
|
1646
|
+
*
|
|
1647
|
+
* @category Orthographic Features
|
|
723
1648
|
*
|
|
724
|
-
* @description
|
|
725
|
-
* taamim are needed in the Hebrew text to correctly identify stress
|
|
726
|
-
* @example
|
|
727
|
-
* 'ˈ' or '\u0341'
|
|
728
1649
|
* @example
|
|
729
1650
|
* ```js
|
|
730
|
-
*
|
|
1651
|
+
* const schema = new Schema({
|
|
1652
|
+
* // truncated for brevity
|
|
731
1653
|
* STRESS_MARKER: {
|
|
732
|
-
* location:
|
|
733
|
-
* mark:
|
|
734
|
-
* }
|
|
1654
|
+
* location: "after-vowel",
|
|
1655
|
+
* mark: "\u0301",
|
|
1656
|
+
* },
|
|
735
1657
|
* });
|
|
736
|
-
*
|
|
1658
|
+
* transliterate("מֶ֣לֶךְ", schema);
|
|
1659
|
+
* // mélek
|
|
737
1660
|
* ```
|
|
1661
|
+
*
|
|
1662
|
+
* @remarks
|
|
1663
|
+
* Taamim are needed in the Hebrew text to correctly identify stress.
|
|
738
1664
|
*/
|
|
739
1665
|
STRESS_MARKER?: {
|
|
740
1666
|
/**
|
|
741
|
-
*
|
|
1667
|
+
* The location of the mark
|
|
742
1668
|
*/
|
|
743
1669
|
location: "before-syllable" | "after-syllable" | "before-vowel" | "after-vowel";
|
|
744
1670
|
/**
|
|
745
|
-
*
|
|
1671
|
+
* A string to use as the marker
|
|
746
1672
|
*/
|
|
747
1673
|
mark: string;
|
|
748
1674
|
/**
|
|
@@ -752,65 +1678,308 @@ export declare class Schema implements SylOpts, SchemaVowels {
|
|
|
752
1678
|
* "never"
|
|
753
1679
|
*
|
|
754
1680
|
* @example
|
|
755
|
-
*
|
|
1681
|
+
* `undefined` and `"never"` are the same
|
|
756
1682
|
* ```js
|
|
757
|
-
*
|
|
758
|
-
* heb.transliterate("בֹּ֖קֶר י֥וֹם אֶחָֽד׃ ", {
|
|
1683
|
+
* const schema = new Schema({
|
|
759
1684
|
* STRESS_MARKER: {
|
|
760
1685
|
* location: "after-vowel",
|
|
761
1686
|
* mark: "\u0301",
|
|
762
|
-
*
|
|
1687
|
+
* },
|
|
763
1688
|
* });
|
|
764
|
-
*
|
|
1689
|
+
* transliterate("בֹּ֖קֶר י֥וֹם אֶחָֽד׃ ", schema);
|
|
765
1690
|
* // bṓqer yốm ʾeḥā́d
|
|
766
1691
|
* ```
|
|
767
1692
|
*
|
|
768
1693
|
* @example
|
|
769
|
-
*
|
|
1694
|
+
* Exclude only single syllable words using `"single"`
|
|
770
1695
|
* ```js
|
|
771
|
-
*
|
|
772
|
-
* heb.transliterate("בֹּ֖קֶר י֥וֹם אֶחָֽד׃ ", {
|
|
1696
|
+
* const schema = new Schema({
|
|
773
1697
|
* STRESS_MARKER: {
|
|
774
1698
|
* location: "after-vowel",
|
|
775
1699
|
* mark: "\u0301",
|
|
776
|
-
* exclude: "single"
|
|
777
|
-
*
|
|
1700
|
+
* exclude: "single",
|
|
1701
|
+
* },
|
|
778
1702
|
* });
|
|
779
|
-
*
|
|
1703
|
+
* transliterate("בֹּ֖קֶר י֥וֹם אֶחָֽד׃ ", schema);
|
|
780
1704
|
* // bṓqer yôm ʾeḥā́d
|
|
781
1705
|
* ```
|
|
782
1706
|
*
|
|
783
1707
|
* @example
|
|
784
|
-
*
|
|
1708
|
+
* Exclude when accent is on the final syllable, implicitly excluding single syllable words using `"final"`
|
|
785
1709
|
* ```js
|
|
786
|
-
*
|
|
787
|
-
* // implicitly excludes single syllable words
|
|
788
|
-
* heb.transliterate("בֹּ֖קֶר י֥וֹם אֶחָֽד׃ ", {
|
|
1710
|
+
* const schema = new Schema({
|
|
789
1711
|
* STRESS_MARKER: {
|
|
790
1712
|
* location: "after-vowel",
|
|
791
1713
|
* mark: "\u0301",
|
|
792
|
-
* exclude: "
|
|
793
|
-
*
|
|
1714
|
+
* exclude: "final",
|
|
1715
|
+
* },
|
|
794
1716
|
* });
|
|
795
|
-
*
|
|
1717
|
+
* transliterate("בֹּ֖קֶר י֥וֹם אֶחָֽד׃ ", schema);
|
|
796
1718
|
* // bṓqer yôm ʾeḥād
|
|
797
1719
|
* ```
|
|
798
1720
|
*/
|
|
799
1721
|
exclude?: "never" | "final" | "single";
|
|
800
1722
|
};
|
|
1723
|
+
/**
|
|
1724
|
+
* @category Syllabification
|
|
1725
|
+
*
|
|
1726
|
+
* @remarks
|
|
1727
|
+
* See implementation for more details
|
|
1728
|
+
*/
|
|
801
1729
|
allowNoNiqqud: SylOpts["allowNoNiqqud"];
|
|
1730
|
+
/**
|
|
1731
|
+
* @category Syllabification
|
|
1732
|
+
*
|
|
1733
|
+
* @remarks
|
|
1734
|
+
* See implementation for more details
|
|
1735
|
+
*/
|
|
802
1736
|
article: SylOpts["article"];
|
|
1737
|
+
/**
|
|
1738
|
+
* @category Syllabification
|
|
1739
|
+
*
|
|
1740
|
+
* @remarks
|
|
1741
|
+
* See implementation for more details
|
|
1742
|
+
*/
|
|
803
1743
|
holemHaser: SylOpts["holemHaser"];
|
|
1744
|
+
/**
|
|
1745
|
+
* @category Syllabification
|
|
1746
|
+
*
|
|
1747
|
+
* @remarks
|
|
1748
|
+
* See implementation for more details
|
|
1749
|
+
*
|
|
1750
|
+
*/
|
|
1751
|
+
ketivQeres?: SylOpts["ketivQeres"];
|
|
1752
|
+
/**
|
|
1753
|
+
* @category Syllabification
|
|
1754
|
+
*
|
|
1755
|
+
* @remarks
|
|
1756
|
+
* See implementation for more details
|
|
1757
|
+
*/
|
|
804
1758
|
longVowels: SylOpts["longVowels"];
|
|
1759
|
+
/**
|
|
1760
|
+
* @category Syllabification
|
|
1761
|
+
*
|
|
1762
|
+
* @remarks
|
|
1763
|
+
* See implementation for more details
|
|
1764
|
+
*/
|
|
805
1765
|
qametsQatan: SylOpts["qametsQatan"];
|
|
1766
|
+
/**
|
|
1767
|
+
* @category Syllabification
|
|
1768
|
+
*
|
|
1769
|
+
* @remarks
|
|
1770
|
+
* See implementation for more details
|
|
1771
|
+
*/
|
|
806
1772
|
shevaAfterMeteg: SylOpts["shevaAfterMeteg"];
|
|
1773
|
+
/**
|
|
1774
|
+
* @category Syllabification
|
|
1775
|
+
*
|
|
1776
|
+
* @remarks
|
|
1777
|
+
* See implementation for more details
|
|
1778
|
+
*/
|
|
807
1779
|
shevaWithMeteg?: SylOpts["shevaWithMeteg"];
|
|
1780
|
+
/**
|
|
1781
|
+
* @category Syllabification
|
|
1782
|
+
*
|
|
1783
|
+
* @remarks
|
|
1784
|
+
* See implementation for more details
|
|
1785
|
+
*/
|
|
808
1786
|
sqnmlvy: SylOpts["sqnmlvy"];
|
|
1787
|
+
/**
|
|
1788
|
+
* @category Syllabification
|
|
1789
|
+
*
|
|
1790
|
+
* @remarks
|
|
1791
|
+
* See implementation for more details
|
|
1792
|
+
*/
|
|
809
1793
|
strict: SylOpts["strict"];
|
|
1794
|
+
/**
|
|
1795
|
+
* @category Syllabification
|
|
1796
|
+
*
|
|
1797
|
+
* @remarks
|
|
1798
|
+
* See implementation for more details
|
|
1799
|
+
*/
|
|
810
1800
|
wawShureq: SylOpts["wawShureq"];
|
|
1801
|
+
/**@category Constructors */
|
|
811
1802
|
constructor(schema: Schema);
|
|
812
1803
|
}
|
|
1804
|
+
/**
|
|
1805
|
+
* The default schema according to SBL's academic style guide.
|
|
1806
|
+
*
|
|
1807
|
+
* Whereas a new {@link Schema} must have all required properties when constructed,
|
|
1808
|
+
* this schema is meant to be used as a default so particular properties can be overidden (see example).
|
|
1809
|
+
*
|
|
1810
|
+
* If the property is not set, the default value will be used. Each property is documented below with their default values.
|
|
1811
|
+
*
|
|
1812
|
+
* Click into each property's "Overrides" for more information about that property.
|
|
1813
|
+
*
|
|
1814
|
+
* @param schema a {@link Schema | Partial\<Schema\>}
|
|
1815
|
+
*
|
|
1816
|
+
* @example
|
|
1817
|
+
* Extend the default schema
|
|
1818
|
+
* ```js
|
|
1819
|
+
* transliterate("שָׁלוֹם", { SHIN: "sh" });
|
|
1820
|
+
* // shālôm
|
|
1821
|
+
* ```
|
|
1822
|
+
*
|
|
1823
|
+
* @privateRemarks
|
|
1824
|
+
* In order for documentation output to be the way I wanted, the properties are all redefined with their type from the Schema.
|
|
1825
|
+
* This is not necessary for the implementation, just the docs.
|
|
1826
|
+
*/
|
|
813
1827
|
export declare class SBL extends Schema {
|
|
1828
|
+
/** @category Vowels @default "ǝ" */
|
|
1829
|
+
VOCAL_SHEVA: Schema["VOCAL_SHEVA"];
|
|
1830
|
+
/** @category Vowels @default "ĕ" */
|
|
1831
|
+
HATAF_SEGOL: Schema["HATAF_SEGOL"];
|
|
1832
|
+
/** @category Vowels @default "ă" */
|
|
1833
|
+
HATAF_PATAH: Schema["HATAF_PATAH"];
|
|
1834
|
+
/** @category Vowels @default "ŏ" */
|
|
1835
|
+
HATAF_QAMATS: Schema["HATAF_QAMATS"];
|
|
1836
|
+
/** @category Vowels @default "i" */
|
|
1837
|
+
HIRIQ: Schema["HIRIQ"];
|
|
1838
|
+
/** @category Vowels @default "ē" */
|
|
1839
|
+
TSERE: Schema["TSERE"];
|
|
1840
|
+
/** @category Vowels @default "e" */
|
|
1841
|
+
SEGOL: Schema["SEGOL"];
|
|
1842
|
+
/** @category Vowels @default "a" */
|
|
1843
|
+
PATAH: Schema["PATAH"];
|
|
1844
|
+
/** @category Vowels @default "ā" */
|
|
1845
|
+
QAMATS: Schema["QAMATS"];
|
|
1846
|
+
/** @category Vowels @default "ō" */
|
|
1847
|
+
HOLAM: Schema["HOLAM"];
|
|
1848
|
+
/** @category Vowels @default "ō" */
|
|
1849
|
+
HOLAM_HASER: Schema["HOLAM_HASER"];
|
|
1850
|
+
/** @category Vowels @default "ū" */
|
|
1851
|
+
QUBUTS: Schema["QUBUTS"];
|
|
1852
|
+
/** @category Marks @default "" */
|
|
1853
|
+
DAGESH: Schema["DAGESH"];
|
|
1854
|
+
/** @category Marks @category Orthographic Features @default true */
|
|
1855
|
+
DAGESH_CHAZAQ: Schema["DAGESH_CHAZAQ"];
|
|
1856
|
+
/** @category Marks @category Taamim @default "-" */
|
|
1857
|
+
MAQAF: Schema["MAQAF"];
|
|
1858
|
+
/** @category Marks @default "" */
|
|
1859
|
+
PASEQ: Schema["PASEQ"];
|
|
1860
|
+
/** @category Marks @category Taamim @default "" */
|
|
1861
|
+
SOF_PASUQ: Schema["SOF_PASUQ"];
|
|
1862
|
+
/** @category Vowels @default "o" */
|
|
1863
|
+
QAMATS_QATAN: Schema["QAMATS_QATAN"];
|
|
1864
|
+
/** @category Vowels @category Orthographic Features @default "a" */
|
|
1865
|
+
FURTIVE_PATAH: Schema["FURTIVE_PATAH"];
|
|
1866
|
+
/** @category Vowels @category Orthographic Features @default "î" */
|
|
1867
|
+
HIRIQ_YOD: Schema["HIRIQ_YOD"];
|
|
1868
|
+
/** @category Vowels @category Orthographic Features @default "ê" */
|
|
1869
|
+
TSERE_YOD: Schema["TSERE_YOD"];
|
|
1870
|
+
/** @category Vowels @category Orthographic Features @default "ê" */
|
|
1871
|
+
SEGOL_YOD: Schema["SEGOL_YOD"];
|
|
1872
|
+
/** @category Vowels @category Orthographic Features @default "û" */
|
|
1873
|
+
SHUREQ: Schema["SHUREQ"];
|
|
1874
|
+
/** @category Vowels @category Orthographic Features @default "ô" */
|
|
1875
|
+
HOLAM_VAV: Schema["HOLAM_VAV"];
|
|
1876
|
+
/** @category Vowels @category Orthographic Features @default "â" */
|
|
1877
|
+
QAMATS_HE: Schema["QAMATS_HE"];
|
|
1878
|
+
/** @category Vowels @category Orthographic Features @default "ê" */
|
|
1879
|
+
SEGOL_HE: Schema["SEGOL_HE"];
|
|
1880
|
+
/** @category Vowels @category Orthographic Features @default "ê" */
|
|
1881
|
+
TSERE_HE: Schema["TSERE_HE"];
|
|
1882
|
+
/** @category Vowel @category Orthographic Features @default "āyw" */
|
|
1883
|
+
MS_SUFX: Schema["MS_SUFX"];
|
|
1884
|
+
/** @category Consonants @default "ʾ" */
|
|
1885
|
+
ALEF: Schema["ALEF"];
|
|
1886
|
+
/** @category Consonants @default "b" */
|
|
1887
|
+
BET: Schema["BET"];
|
|
1888
|
+
/** @category Consonants @category Orthographic Features @default undefined */
|
|
1889
|
+
BET_DAGESH: Schema["BET_DAGESH"];
|
|
1890
|
+
/** @category Consonants @default "g" */
|
|
1891
|
+
GIMEL: Schema["GIMEL"];
|
|
1892
|
+
/** @category Consonants @category Orthographic Features @default undefined */
|
|
1893
|
+
GIMEL_DAGESH: Schema["GIMEL_DAGESH"];
|
|
1894
|
+
/** @category Consonants @default "d" */
|
|
1895
|
+
DALET: Schema["DALET"];
|
|
1896
|
+
/** @category Consonants @category Orthographic Features @default undefined */
|
|
1897
|
+
DALET_DAGESH: Schema["DALET_DAGESH"];
|
|
1898
|
+
/** @category Consonants @default "h" */
|
|
1899
|
+
HE: Schema["HE"];
|
|
1900
|
+
/** @category Consonants @default "w" */
|
|
1901
|
+
VAV: Schema["VAV"];
|
|
1902
|
+
/** @category Consonants @default "z" */
|
|
1903
|
+
ZAYIN: Schema["ZAYIN"];
|
|
1904
|
+
/** @category Consonants @default "ḥ" */
|
|
1905
|
+
HET: Schema["HET"];
|
|
1906
|
+
/** @category Consonants @default "ṭ" */
|
|
1907
|
+
TET: Schema["TET"];
|
|
1908
|
+
/** @category Consonants @default "y" */
|
|
1909
|
+
YOD: Schema["YOD"];
|
|
1910
|
+
/** @category Consonants @default "k" */
|
|
1911
|
+
FINAL_KAF: Schema["FINAL_KAF"];
|
|
1912
|
+
/** @category Consonants @default "k" */
|
|
1913
|
+
KAF: Schema["KAF"];
|
|
1914
|
+
/** @category Consonants @category Orthographic Features @default undefined */
|
|
1915
|
+
KAF_DAGESH: Schema["KAF_DAGESH"];
|
|
1916
|
+
/** @category Consonants @default "l" */
|
|
1917
|
+
LAMED: Schema["LAMED"];
|
|
1918
|
+
/** @category Consonants @default "m" */
|
|
1919
|
+
FINAL_MEM: Schema["FINAL_MEM"];
|
|
1920
|
+
/** @category Consonants @default "m" */
|
|
1921
|
+
MEM: Schema["MEM"];
|
|
1922
|
+
/** @category Consonants @default "n" */
|
|
1923
|
+
FINAL_NUN: Schema["FINAL_NUN"];
|
|
1924
|
+
/** @category Consonants @default "n" */
|
|
1925
|
+
NUN: Schema["NUN"];
|
|
1926
|
+
/** @category Consonants @default "s" */
|
|
1927
|
+
SAMEKH: Schema["SAMEKH"];
|
|
1928
|
+
/** @category Consonants @default "ʿ" */
|
|
1929
|
+
AYIN: Schema["AYIN"];
|
|
1930
|
+
/** @category Consonants @default "p" */
|
|
1931
|
+
FINAL_PE: Schema["FINAL_PE"];
|
|
1932
|
+
/** @category Consonants @default "p" */
|
|
1933
|
+
PE: Schema["PE"];
|
|
1934
|
+
/** @category Consonants @category Orthographic Features @default undefined */
|
|
1935
|
+
PE_DAGESH: Schema["PE_DAGESH"];
|
|
1936
|
+
/** @category Consonants @default "ṣ" */
|
|
1937
|
+
FINAL_TSADI: Schema["FINAL_TSADI"];
|
|
1938
|
+
/** @category Consonants @default "ṣ" */
|
|
1939
|
+
TSADI: Schema["TSADI"];
|
|
1940
|
+
/** @category Consonants @default "q" */
|
|
1941
|
+
QOF: Schema["QOF"];
|
|
1942
|
+
/** @category Consonants @default "r" */
|
|
1943
|
+
RESH: Schema["RESH"];
|
|
1944
|
+
/** @category Consonants @category Orthographic Features @default "š" */
|
|
1945
|
+
SHIN: Schema["SHIN"];
|
|
1946
|
+
/** @category Consonants @category Orthographic Features @default "ś" */
|
|
1947
|
+
SIN: Schema["SIN"];
|
|
1948
|
+
/** @category Consonants @default "t" */
|
|
1949
|
+
TAV: Schema["TAV"];
|
|
1950
|
+
/** @category Consonants @category Orthographic Features @default undefined */
|
|
1951
|
+
TAV_DAGESH: Schema["TAV_DAGESH"];
|
|
1952
|
+
/** @category Orthographic Features @default "yhwh" */
|
|
1953
|
+
DIVINE_NAME: Schema["DIVINE_NAME"];
|
|
1954
|
+
/** @category Orthographic Features @default undefined */
|
|
1955
|
+
DIVINE_NAME_ELOHIM: Schema["DIVINE_NAME_ELOHIM"];
|
|
1956
|
+
/** @category Orthographic Features @default undefined */
|
|
1957
|
+
SYLLABLE_SEPARATOR: Schema["SYLLABLE_SEPARATOR"];
|
|
1958
|
+
/** @category Orthographic Features @default undefined */
|
|
1959
|
+
ADDITIONAL_FEATURES: Schema["ADDITIONAL_FEATURES"];
|
|
1960
|
+
/** @category Orthographic Features @default undefined */
|
|
1961
|
+
STRESS_MARKER: Schema["STRESS_MARKER"];
|
|
1962
|
+
/** @category Syllabification @default true */
|
|
1963
|
+
longVowels: Schema["longVowels"];
|
|
1964
|
+
/** @category Syllabification @default true */
|
|
1965
|
+
qametsQatan: Schema["qametsQatan"];
|
|
1966
|
+
/** @category Syllabification @default true */
|
|
1967
|
+
shevaAfterMeteg: Schema["shevaAfterMeteg"];
|
|
1968
|
+
/** @category Syllabification @default false */
|
|
1969
|
+
shevaWithMeteg: Schema["shevaWithMeteg"];
|
|
1970
|
+
/** @category Syllabification @default true */
|
|
1971
|
+
sqnmlvy: Schema["sqnmlvy"];
|
|
1972
|
+
/** @category Syllabification @default true */
|
|
1973
|
+
wawShureq: Schema["wawShureq"];
|
|
1974
|
+
/** @category Syllabification @default true */
|
|
1975
|
+
article: Schema["article"];
|
|
1976
|
+
/** @category Syllabification @default true */
|
|
1977
|
+
allowNoNiqqud: Schema["allowNoNiqqud"];
|
|
1978
|
+
/** @category Syllabification @default false */
|
|
1979
|
+
strict: Schema["strict"];
|
|
1980
|
+
/** @category Syllabification @default "remove" */
|
|
1981
|
+
holemHaser: Schema["holemHaser"];
|
|
1982
|
+
/** @category Syllabification @default undefined */
|
|
1983
|
+
ketivQeres: Schema["ketivQeres"];
|
|
814
1984
|
constructor(schema: Partial<Schema>);
|
|
815
1985
|
}
|
|
816
|
-
export {};
|