@natlibfi/marc-record-validators-melinda 3.2.0 → 3.3.14-alpha.2
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/.github/CODEOWNERS +2 -0
- package/.github/dependabot.yml +40 -0
- package/.github/workflows/melinda-node-tests.yml +61 -0
- package/LICENSE.txt +21 -661
- package/README.md +4 -5
- package/dist/access-rights.js +94 -0
- package/dist/access-rights.js.map +1 -0
- package/dist/access-rights.spec.js +150 -0
- package/dist/access-rights.spec.js.map +1 -0
- package/dist/double-commas.js +17 -27
- package/dist/double-commas.js.map +1 -1
- package/dist/double-commas.spec.js +72 -27
- package/dist/double-commas.spec.js.map +1 -1
- package/dist/duplicates-ind1.js +47 -27
- package/dist/duplicates-ind1.js.map +1 -1
- package/dist/duplicates-ind1.spec.js +44 -27
- package/dist/duplicates-ind1.spec.js.map +1 -1
- package/dist/empty-fields.js +79 -29
- package/dist/empty-fields.js.map +1 -1
- package/dist/empty-fields.spec.js +113 -27
- package/dist/empty-fields.spec.js.map +1 -1
- package/dist/ending-punctuation-conf.js +772 -129
- package/dist/ending-punctuation-conf.js.map +1 -1
- package/dist/ending-punctuation.js +291 -72
- package/dist/ending-punctuation.js.map +1 -1
- package/dist/ending-punctuation.spec.js +2638 -118
- package/dist/ending-punctuation.spec.js.map +1 -1
- package/dist/ending-whitespace.js +58 -0
- package/dist/ending-whitespace.js.map +1 -0
- package/dist/ending-whitespace.spec.js +42 -0
- package/dist/ending-whitespace.spec.js.map +1 -0
- package/dist/field-521-fix.js +96 -0
- package/dist/field-521-fix.js.map +1 -0
- package/dist/field-521-fix.spec.js +51 -0
- package/dist/field-521-fix.spec.js.map +1 -0
- package/dist/field-exclusion.js +214 -63
- package/dist/field-exclusion.js.map +1 -1
- package/dist/field-exclusion.spec.js +1057 -31
- package/dist/field-exclusion.spec.js.map +1 -1
- package/dist/field-structure.js +249 -78
- package/dist/field-structure.js.map +1 -1
- package/dist/field-structure.spec.js +534 -31
- package/dist/field-structure.spec.js.map +1 -1
- package/dist/fields-present.js +31 -27
- package/dist/fields-present.js.map +1 -1
- package/dist/fields-present.spec.js +120 -27
- package/dist/fields-present.spec.js.map +1 -1
- package/dist/fixed-fields.js +72 -27
- package/dist/fixed-fields.js.map +1 -1
- package/dist/fixed-fields.spec.js +139 -27
- package/dist/fixed-fields.spec.js.map +1 -1
- package/dist/identical-fields.js +42 -28
- package/dist/identical-fields.js.map +1 -1
- package/dist/identical-fields.spec.js +98 -27
- package/dist/identical-fields.spec.js.map +1 -1
- package/dist/index.js +202 -27
- package/dist/index.js.map +1 -1
- package/dist/indicator-fixes.js +191 -0
- package/dist/indicator-fixes.js.map +1 -0
- package/dist/indicator-fixes.spec.js +51 -0
- package/dist/indicator-fixes.spec.js.map +1 -0
- package/dist/isbn-issn.js +266 -27
- package/dist/isbn-issn.js.map +1 -1
- package/dist/isbn-issn.spec.js +594 -27
- package/dist/isbn-issn.spec.js.map +1 -1
- package/dist/item-language.js +171 -27
- package/dist/item-language.js.map +1 -1
- package/dist/item-language.spec.js +305 -27
- package/dist/item-language.spec.js.map +1 -1
- package/dist/mergeField500Lisapainokset.js +155 -0
- package/dist/mergeField500Lisapainokset.js.map +1 -0
- package/dist/mergeField500Lisapainokset.spec.js +51 -0
- package/dist/mergeField500Lisapainokset.spec.js.map +1 -0
- package/dist/mergeRelatorTermFields.js +140 -0
- package/dist/mergeRelatorTermFields.js.map +1 -0
- package/dist/mergeRelatorTermFields.spec.js +51 -0
- package/dist/mergeRelatorTermFields.spec.js.map +1 -0
- package/dist/multiple-subfield-0.js +120 -0
- package/dist/multiple-subfield-0.js.map +1 -0
- package/dist/multiple-subfield-0.spec.js +51 -0
- package/dist/multiple-subfield-0.spec.js.map +1 -0
- package/dist/non-breaking-space.js +61 -0
- package/dist/non-breaking-space.js.map +1 -0
- package/dist/non-breaking-space.spec.js +42 -0
- package/dist/non-breaking-space.spec.js.map +1 -0
- package/dist/normalize-identifiers.js +210 -0
- package/dist/normalize-identifiers.js.map +1 -0
- package/dist/normalize-identifiers.spec.js +51 -0
- package/dist/normalize-identifiers.spec.js.map +1 -0
- package/dist/normalize-utf8-diacritics.js +140 -0
- package/dist/normalize-utf8-diacritics.js.map +1 -0
- package/dist/normalize-utf8-diacritics.spec.js +51 -0
- package/dist/normalize-utf8-diacritics.spec.js.map +1 -0
- package/dist/punctuation/index.js +281 -0
- package/dist/punctuation/index.js.map +1 -0
- package/dist/punctuation/rules/aut.js +332 -0
- package/dist/punctuation/rules/aut.js.map +1 -0
- package/dist/punctuation/rules/bib.js +374 -0
- package/dist/punctuation/rules/bib.js.map +1 -0
- package/dist/punctuation/rules/index.js +21 -0
- package/dist/punctuation/rules/index.js.map +1 -0
- package/dist/punctuation.spec.js +51 -0
- package/dist/punctuation.spec.js.map +1 -0
- package/dist/punctuation2.js +726 -0
- package/dist/punctuation2.js.map +1 -0
- package/dist/punctuation2.spec.js +51 -0
- package/dist/punctuation2.spec.js.map +1 -0
- package/dist/reindexSubfield6OccurenceNumbers.js +199 -0
- package/dist/reindexSubfield6OccurenceNumbers.js.map +1 -0
- package/dist/reindexSubfield6OccurenceNumbers.spec.js +51 -0
- package/dist/reindexSubfield6OccurenceNumbers.spec.js.map +1 -0
- package/dist/removeDuplicateDataFields.js +405 -0
- package/dist/removeDuplicateDataFields.js.map +1 -0
- package/dist/removeDuplicateDataFields.spec.js +51 -0
- package/dist/removeDuplicateDataFields.spec.js.map +1 -0
- package/dist/removeInferiorDataFields.js +245 -0
- package/dist/removeInferiorDataFields.js.map +1 -0
- package/dist/removeInferiorDataFields.spec.js +51 -0
- package/dist/removeInferiorDataFields.spec.js.map +1 -0
- package/dist/resolvable-ext-references-melinda.js +112 -31
- package/dist/resolvable-ext-references-melinda.js.map +1 -1
- package/dist/resolvable-ext-references-melinda.spec.js +166 -27
- package/dist/resolvable-ext-references-melinda.spec.js.map +1 -1
- package/dist/resolveOrphanedSubfield6s.js +116 -0
- package/dist/resolveOrphanedSubfield6s.js.map +1 -0
- package/dist/resolveOrphanedSubfield6s.spec.js +51 -0
- package/dist/resolveOrphanedSubfield6s.spec.js.map +1 -0
- package/dist/sanitize-vocabulary-source-codes.js +93 -0
- package/dist/sanitize-vocabulary-source-codes.js.map +1 -0
- package/dist/sanitize-vocabulary-source-codes.spec.js +51 -0
- package/dist/sanitize-vocabulary-source-codes.spec.js.map +1 -0
- package/dist/sort-tags.js +53 -27
- package/dist/sort-tags.js.map +1 -1
- package/dist/sort-tags.spec.js +206 -27
- package/dist/sort-tags.spec.js.map +1 -1
- package/dist/sortRelatorTerms.js +135 -0
- package/dist/sortRelatorTerms.js.map +1 -0
- package/dist/sortRelatorTerms.spec.js +51 -0
- package/dist/sortRelatorTerms.spec.js.map +1 -0
- package/dist/sortSubfields.js +279 -0
- package/dist/sortSubfields.js.map +1 -0
- package/dist/sortSubfields.spec.js +51 -0
- package/dist/sortSubfields.spec.js.map +1 -0
- package/dist/stripPunctuation.js +49 -0
- package/dist/stripPunctuation.js.map +1 -0
- package/dist/stripPunctuation.spec.js +51 -0
- package/dist/stripPunctuation.spec.js.map +1 -0
- package/dist/subfield-exclusion.js +174 -57
- package/dist/subfield-exclusion.js.map +1 -1
- package/dist/subfield-exclusion.spec.js +521 -31
- package/dist/subfield-exclusion.spec.js.map +1 -1
- package/dist/subfield6Utils.js +457 -0
- package/dist/subfield6Utils.js.map +1 -0
- package/dist/subfield8Utils.js +99 -0
- package/dist/subfield8Utils.js.map +1 -0
- package/dist/typeOfDate-008.js +48 -0
- package/dist/typeOfDate-008.js.map +1 -0
- package/dist/typeOfDate-008.spec.js +47 -0
- package/dist/typeOfDate-008.spec.js.map +1 -0
- package/dist/unicode-decomposition.js +139 -30
- package/dist/unicode-decomposition.js.map +1 -1
- package/dist/unicode-decomposition.spec.js +90 -27
- package/dist/unicode-decomposition.spec.js.map +1 -1
- package/dist/update-field-540.js +119 -0
- package/dist/update-field-540.js.map +1 -0
- package/dist/update-field-540.spec.js +51 -0
- package/dist/update-field-540.spec.js.map +1 -0
- package/dist/urn.js +185 -0
- package/dist/urn.js.map +1 -0
- package/dist/urn.spec.js +238 -0
- package/dist/urn.spec.js.map +1 -0
- package/dist/utils.js +58 -0
- package/dist/utils.js.map +1 -0
- package/package.json +114 -124
- package/src/access-rights.js +84 -0
- package/src/access-rights.spec.js +126 -0
- package/src/double-commas.js +12 -49
- package/src/double-commas.spec.js +50 -82
- package/src/duplicates-ind1.js +34 -74
- package/src/duplicates-ind1.spec.js +39 -117
- package/src/empty-fields.js +62 -74
- package/src/empty-fields.spec.js +134 -207
- package/src/ending-punctuation-conf.js +679 -644
- package/src/ending-punctuation.js +260 -250
- package/src/ending-punctuation.spec.js +2545 -2322
- package/src/ending-whitespace.js +40 -0
- package/src/ending-whitespace.spec.js +44 -0
- package/src/field-521-fix.js +92 -0
- package/src/field-521-fix.spec.js +52 -0
- package/src/field-exclusion.js +197 -215
- package/src/field-exclusion.spec.js +883 -481
- package/src/field-structure.js +213 -271
- package/src/field-structure.spec.js +597 -474
- package/src/fields-present.js +19 -49
- package/src/fields-present.spec.js +90 -91
- package/src/fixed-fields.js +61 -94
- package/src/fixed-fields.spec.js +81 -125
- package/src/identical-fields.js +29 -48
- package/src/identical-fields.spec.js +114 -146
- package/src/index.js +41 -46
- package/src/indicator-fixes.js +211 -0
- package/src/indicator-fixes.spec.js +52 -0
- package/src/isbn-issn.js +254 -106
- package/src/isbn-issn.spec.js +399 -172
- package/src/item-language.js +158 -195
- package/src/item-language.spec.js +314 -306
- package/src/mergeField500Lisapainokset.js +153 -0
- package/src/mergeField500Lisapainokset.spec.js +52 -0
- package/src/mergeRelatorTermFields.js +143 -0
- package/src/mergeRelatorTermFields.spec.js +52 -0
- package/src/multiple-subfield-0.js +129 -0
- package/src/multiple-subfield-0.spec.js +52 -0
- package/src/non-breaking-space.js +49 -0
- package/src/non-breaking-space.spec.js +44 -0
- package/src/normalize-identifiers.js +197 -0
- package/src/normalize-identifiers.spec.js +52 -0
- package/src/normalize-utf8-diacritics.js +141 -0
- package/src/normalize-utf8-diacritics.spec.js +52 -0
- package/src/punctuation/index.js +292 -0
- package/src/punctuation/rules/aut.js +372 -0
- package/src/punctuation/rules/bib.js +420 -0
- package/src/punctuation/rules/index.js +7 -0
- package/src/punctuation.spec.js +52 -0
- package/src/punctuation2.js +441 -0
- package/src/punctuation2.spec.js +52 -0
- package/src/reindexSubfield6OccurenceNumbers.js +210 -0
- package/src/reindexSubfield6OccurenceNumbers.spec.js +52 -0
- package/src/removeDuplicateDataFields.js +447 -0
- package/src/removeDuplicateDataFields.spec.js +52 -0
- package/src/removeInferiorDataFields.js +259 -0
- package/src/removeInferiorDataFields.spec.js +52 -0
- package/src/resolvable-ext-references-melinda.js +89 -122
- package/src/resolvable-ext-references-melinda.spec.js +168 -198
- package/src/resolveOrphanedSubfield6s.js +115 -0
- package/src/resolveOrphanedSubfield6s.spec.js +52 -0
- package/src/sanitize-vocabulary-source-codes.js +99 -0
- package/src/sanitize-vocabulary-source-codes.spec.js +52 -0
- package/src/sort-tags.js +34 -60
- package/src/sort-tags.spec.js +256 -290
- package/src/sortRelatorTerms.js +142 -0
- package/src/sortRelatorTerms.spec.js +52 -0
- package/src/sortSubfields.js +176 -0
- package/src/sortSubfields.spec.js +52 -0
- package/src/stripPunctuation.js +42 -0
- package/src/stripPunctuation.spec.js +52 -0
- package/src/subfield-exclusion.js +157 -180
- package/src/subfield-exclusion.spec.js +507 -453
- package/src/subfield6Utils.js +485 -0
- package/src/subfield8Utils.js +102 -0
- package/src/typeOfDate-008.js +40 -0
- package/src/typeOfDate-008.spec.js +47 -0
- package/src/unicode-decomposition.js +130 -145
- package/src/unicode-decomposition.spec.js +89 -115
- package/src/update-field-540.js +99 -0
- package/src/update-field-540.spec.js +52 -0
- package/src/urn.js +164 -0
- package/src/urn.spec.js +231 -0
- package/src/utils.js +52 -0
- package/test-fixtures/duplicates-ind1/01/expectedResult.json +4 -0
- package/test-fixtures/duplicates-ind1/01/metadata.json +4 -0
- package/test-fixtures/duplicates-ind1/01/record.json +16 -0
- package/test-fixtures/duplicates-ind1/02/expectedResult.json +6 -0
- package/test-fixtures/duplicates-ind1/02/metadata.json +4 -0
- package/test-fixtures/duplicates-ind1/02/record.json +16 -0
- package/test-fixtures/duplicates-ind1/03/expectedResult.json +13 -0
- package/test-fixtures/duplicates-ind1/03/metadata.json +6 -0
- package/test-fixtures/duplicates-ind1/03/record.json +16 -0
- package/test-fixtures/ending-whitespace/01/expectedResult.json +4 -0
- package/test-fixtures/ending-whitespace/01/metadata.json +6 -0
- package/test-fixtures/ending-whitespace/01/record.json +15 -0
- package/test-fixtures/ending-whitespace/02/expectedResult.json +4 -0
- package/test-fixtures/ending-whitespace/02/metadata.json +6 -0
- package/test-fixtures/ending-whitespace/02/record.json +15 -0
- package/test-fixtures/ending-whitespace/03/expectedResult.json +17 -0
- package/test-fixtures/ending-whitespace/03/metadata.json +6 -0
- package/test-fixtures/ending-whitespace/03/record.json +15 -0
- package/test-fixtures/ending-whitespace/04/expectedResult.json +10 -0
- package/test-fixtures/ending-whitespace/04/metadata.json +6 -0
- package/test-fixtures/ending-whitespace/04/record.json +8 -0
- package/test-fixtures/fix521/01/expectedResult.json +6 -0
- package/test-fixtures/fix521/01/metadata.json +5 -0
- package/test-fixtures/fix521/01/record.json +13 -0
- package/test-fixtures/fix521/02/expectedResult.json +15 -0
- package/test-fixtures/fix521/02/metadata.json +5 -0
- package/test-fixtures/fix521/02/record.json +13 -0
- package/test-fixtures/fix521/03/expectedResult.json +5 -0
- package/test-fixtures/fix521/03/metadata.json +5 -0
- package/test-fixtures/fix521/03/record.json +13 -0
- package/test-fixtures/indicator-fixes/01/expectedResult.json +9 -0
- package/test-fixtures/indicator-fixes/01/metadata.json +5 -0
- package/test-fixtures/indicator-fixes/01/record.json +64 -0
- package/test-fixtures/indicator-fixes/02/expectedResult.json +66 -0
- package/test-fixtures/indicator-fixes/02/metadata.json +5 -0
- package/test-fixtures/indicator-fixes/02/record.json +64 -0
- package/test-fixtures/indicator-fixes/03/expectedResult.json +55 -0
- package/test-fixtures/indicator-fixes/03/metadata.json +5 -0
- package/test-fixtures/indicator-fixes/03/record.json +54 -0
- package/test-fixtures/indicator-fixes/04/expectedResult.json +66 -0
- package/test-fixtures/indicator-fixes/04/metadata.json +5 -0
- package/test-fixtures/indicator-fixes/04/record.json +65 -0
- package/test-fixtures/indicator-fixes/05/expectedResult.json +66 -0
- package/test-fixtures/indicator-fixes/05/metadata.json +5 -0
- package/test-fixtures/indicator-fixes/05/record.json +65 -0
- package/test-fixtures/indicator-fixes/06/expectedResult.json +75 -0
- package/test-fixtures/indicator-fixes/06/metadata.json +5 -0
- package/test-fixtures/indicator-fixes/06/record.json +74 -0
- package/test-fixtures/lisapainokset/fixer/01/expectedResult.json +37 -0
- package/test-fixtures/lisapainokset/fixer/01/metadata.json +6 -0
- package/test-fixtures/lisapainokset/fixer/01/record.json +61 -0
- package/test-fixtures/lisapainokset/fixer/02/expectedResult.json +44 -0
- package/test-fixtures/lisapainokset/fixer/02/metadata.json +6 -0
- package/test-fixtures/lisapainokset/fixer/02/record.json +45 -0
- package/test-fixtures/lisapainokset/fixer/03/expectedResult.json +21 -0
- package/test-fixtures/lisapainokset/fixer/03/metadata.json +6 -0
- package/test-fixtures/lisapainokset/fixer/03/record.json +45 -0
- package/test-fixtures/lisapainokset/validator/01/expectedResult.json +7 -0
- package/test-fixtures/lisapainokset/validator/01/metadata.json +6 -0
- package/test-fixtures/lisapainokset/validator/01/record.json +45 -0
- package/test-fixtures/lisapainokset/validator/02/expectedResult.json +6 -0
- package/test-fixtures/lisapainokset/validator/02/metadata.json +6 -0
- package/test-fixtures/lisapainokset/validator/02/record.json +61 -0
- package/test-fixtures/lisapainokset/validator/03/expectedResult.json +4 -0
- package/test-fixtures/lisapainokset/validator/03/metadata.json +6 -0
- package/test-fixtures/lisapainokset/validator/03/record.json +37 -0
- package/test-fixtures/mergeRelatorTermFields/fixer/01/expectedResult.json +14 -0
- package/test-fixtures/mergeRelatorTermFields/fixer/01/metadata.json +6 -0
- package/test-fixtures/mergeRelatorTermFields/fixer/01/record.json +16 -0
- package/test-fixtures/mergeRelatorTermFields/fixer/02/expectedResult.json +17 -0
- package/test-fixtures/mergeRelatorTermFields/fixer/02/metadata.json +6 -0
- package/test-fixtures/mergeRelatorTermFields/fixer/02/record.json +23 -0
- package/test-fixtures/mergeRelatorTermFields/validator/01/expectedResult.json +6 -0
- package/test-fixtures/mergeRelatorTermFields/validator/01/metadata.json +6 -0
- package/test-fixtures/mergeRelatorTermFields/validator/01/record.json +16 -0
- package/test-fixtures/mergeRelatorTermFields/validator/02/expectedResult.json +4 -0
- package/test-fixtures/mergeRelatorTermFields/validator/02/metadata.json +6 -0
- package/test-fixtures/mergeRelatorTermFields/validator/02/record.json +16 -0
- package/test-fixtures/non-breaking-space/01/expectedResult.json +4 -0
- package/test-fixtures/non-breaking-space/01/metadata.json +6 -0
- package/test-fixtures/non-breaking-space/01/record.json +15 -0
- package/test-fixtures/non-breaking-space/02/expectedResult.json +4 -0
- package/test-fixtures/non-breaking-space/02/metadata.json +6 -0
- package/test-fixtures/non-breaking-space/02/record.json +15 -0
- package/test-fixtures/non-breaking-space/03/expectedResult.json +17 -0
- package/test-fixtures/non-breaking-space/03/metadata.json +6 -0
- package/test-fixtures/non-breaking-space/03/record.json +15 -0
- package/test-fixtures/non-breaking-space/04/expectedResult.json +21 -0
- package/test-fixtures/non-breaking-space/04/metadata.json +6 -0
- package/test-fixtures/non-breaking-space/04/record.json +19 -0
- package/test-fixtures/normalize-identifiers/01/expectedResult.json +8 -0
- package/test-fixtures/normalize-identifiers/01/metadata.json +5 -0
- package/test-fixtures/normalize-identifiers/01/record.json +81 -0
- package/test-fixtures/normalize-identifiers/02/expectedResult.json +92 -0
- package/test-fixtures/normalize-identifiers/02/metadata.json +5 -0
- package/test-fixtures/normalize-identifiers/02/record.json +92 -0
- package/test-fixtures/normalize-identifiers/03/expectedResult.json +63 -0
- package/test-fixtures/normalize-identifiers/03/metadata.json +5 -0
- package/test-fixtures/normalize-identifiers/03/record.json +61 -0
- package/test-fixtures/normalize-identifiers/04/expectedResult.json +79 -0
- package/test-fixtures/normalize-identifiers/04/metadata.json +5 -0
- package/test-fixtures/normalize-identifiers/04/record.json +77 -0
- package/test-fixtures/normalize-utf8-diacritics/01/expectedResult.json +7 -0
- package/test-fixtures/normalize-utf8-diacritics/01/metadata.json +5 -0
- package/test-fixtures/normalize-utf8-diacritics/01/record.json +39 -0
- package/test-fixtures/normalize-utf8-diacritics/02/expectedResult.json +41 -0
- package/test-fixtures/normalize-utf8-diacritics/02/metadata.json +5 -0
- package/test-fixtures/normalize-utf8-diacritics/02/record.json +39 -0
- package/test-fixtures/normalize-utf8-diacritics/03/expectedResult.json +5 -0
- package/test-fixtures/normalize-utf8-diacritics/03/metadata.json +5 -0
- package/test-fixtures/normalize-utf8-diacritics/03/record.json +37 -0
- package/test-fixtures/normalize-utf8-diacritics/04/expectedResult.json +41 -0
- package/test-fixtures/normalize-utf8-diacritics/04/metadata.json +5 -0
- package/test-fixtures/normalize-utf8-diacritics/04/record.json +39 -0
- package/test-fixtures/normalize-utf8-diacritics/05/expectedResult.json +41 -0
- package/test-fixtures/normalize-utf8-diacritics/05/metadata.json +5 -0
- package/test-fixtures/normalize-utf8-diacritics/05/record.json +41 -0
- package/test-fixtures/punctuation/01/expectedResult.json +3 -0
- package/test-fixtures/punctuation/01/metadata.json +4 -0
- package/test-fixtures/punctuation/01/record.json +18 -0
- package/test-fixtures/punctuation/02/expectedResult.json +3 -0
- package/test-fixtures/punctuation/02/metadata.json +4 -0
- package/test-fixtures/punctuation/02/record.json +18 -0
- package/test-fixtures/punctuation/03/expectedResult.json +21 -0
- package/test-fixtures/punctuation/03/metadata.json +5 -0
- package/test-fixtures/punctuation/03/record.json +19 -0
- package/test-fixtures/punctuation/04/expectedResult.json +21 -0
- package/test-fixtures/punctuation/04/metadata.json +5 -0
- package/test-fixtures/punctuation/04/record.json +19 -0
- package/test-fixtures/punctuation/05/expectedResult.json +44 -0
- package/test-fixtures/punctuation/05/metadata.json +5 -0
- package/test-fixtures/punctuation/05/record.json +42 -0
- package/test-fixtures/punctuation2/01/expectedResult.json +12 -0
- package/test-fixtures/punctuation2/01/metadata.json +6 -0
- package/test-fixtures/punctuation2/01/record.json +37 -0
- package/test-fixtures/punctuation2/02/expectedResult.json +4 -0
- package/test-fixtures/punctuation2/02/metadata.json +6 -0
- package/test-fixtures/punctuation2/02/record.json +14 -0
- package/test-fixtures/punctuation2/04/expectedResult.json +7 -0
- package/test-fixtures/punctuation2/04/metadata.json +6 -0
- package/test-fixtures/punctuation2/04/record.json +22 -0
- package/test-fixtures/punctuation2/05/expectedResult.json +6 -0
- package/test-fixtures/punctuation2/05/metadata.json +6 -0
- package/test-fixtures/punctuation2/05/record.json +12 -0
- package/test-fixtures/punctuation2/98/expectedResult.json +45 -0
- package/test-fixtures/punctuation2/98/metadata.json +6 -0
- package/test-fixtures/punctuation2/98/record.json +43 -0
- package/test-fixtures/punctuation2/99/expectedResult.json +15 -0
- package/test-fixtures/punctuation2/99/metadata.json +6 -0
- package/test-fixtures/punctuation2/99/record.json +14 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/f01/expectedResult.json +35 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/f01/metadata.json +6 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/f01/record.json +34 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/f02/expectedResult.json +53 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/f02/metadata.json +6 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/f02/record.json +51 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/f03/expectedResult.json +46 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/f03/metadata.json +7 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/f03/record.json +44 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/v01/expectedResult.json +6 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/v01/metadata.json +5 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/v01/record.json +31 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/v02/expectedResult.json +6 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/v02/metadata.json +6 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/v02/record.json +38 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/v03/expectedResult.json +6 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/v03/metadata.json +6 -0
- package/test-fixtures/reindex-sf6-occurence-numbers/v03/record.json +30 -0
- package/test-fixtures/remove-duplicate-datafields/f01/expectedResult.json +35 -0
- package/test-fixtures/remove-duplicate-datafields/f01/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/f01/record.json +34 -0
- package/test-fixtures/remove-duplicate-datafields/f03/expectedResult.json +20 -0
- package/test-fixtures/remove-duplicate-datafields/f03/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/f03/record.json +33 -0
- package/test-fixtures/remove-duplicate-datafields/f03b/expectedResult.json +20 -0
- package/test-fixtures/remove-duplicate-datafields/f03b/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/f03b/record.json +35 -0
- package/test-fixtures/remove-duplicate-datafields/f03c/expectedResult.json +25 -0
- package/test-fixtures/remove-duplicate-datafields/f03c/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/f03c/record.json +43 -0
- package/test-fixtures/remove-duplicate-datafields/f04/expectedResult.json +31 -0
- package/test-fixtures/remove-duplicate-datafields/f04/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/f04/record.json +41 -0
- package/test-fixtures/remove-duplicate-datafields/f05/expectedResult.json +23 -0
- package/test-fixtures/remove-duplicate-datafields/f05/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/f05/record.json +29 -0
- package/test-fixtures/remove-duplicate-datafields/f06/expectedResult.json +24 -0
- package/test-fixtures/remove-duplicate-datafields/f06/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/f06/record.json +41 -0
- package/test-fixtures/remove-duplicate-datafields/f07/expectedResult.json +15 -0
- package/test-fixtures/remove-duplicate-datafields/f07/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/f07/record.json +21 -0
- package/test-fixtures/remove-duplicate-datafields/f08/expectedResult.json +21 -0
- package/test-fixtures/remove-duplicate-datafields/f08/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/f08/record.json +33 -0
- package/test-fixtures/remove-duplicate-datafields/f09/expectedResult.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/f09/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/f09/record.json +9 -0
- package/test-fixtures/remove-duplicate-datafields/f10/expectedResult.json +15 -0
- package/test-fixtures/remove-duplicate-datafields/f10/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/f10/record.json +24 -0
- package/test-fixtures/remove-duplicate-datafields/f11/expectedResult.json +30 -0
- package/test-fixtures/remove-duplicate-datafields/f11/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/f11/record.json +53 -0
- package/test-fixtures/remove-duplicate-datafields/v01/expectedResult.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/v01/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/v01/record.json +31 -0
- package/test-fixtures/remove-duplicate-datafields/v02/expectedResult.json +10 -0
- package/test-fixtures/remove-duplicate-datafields/v02/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/v02/record.json +45 -0
- package/test-fixtures/remove-duplicate-datafields/v03/expectedResult.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/v03/metadata.json +7 -0
- package/test-fixtures/remove-duplicate-datafields/v03/record.json +37 -0
- package/test-fixtures/remove-duplicate-datafields/v04/expectedResult.json +8 -0
- package/test-fixtures/remove-duplicate-datafields/v04/metadata.json +6 -0
- package/test-fixtures/remove-duplicate-datafields/v04/record.json +41 -0
- package/test-fixtures/remove-inferior-datafields/f01/expectedResult.json +21 -0
- package/test-fixtures/remove-inferior-datafields/f01/metadata.json +6 -0
- package/test-fixtures/remove-inferior-datafields/f01/record.json +31 -0
- package/test-fixtures/remove-inferior-datafields/f03/expectedResult.json +16 -0
- package/test-fixtures/remove-inferior-datafields/f03/metadata.json +6 -0
- package/test-fixtures/remove-inferior-datafields/f03/record.json +27 -0
- package/test-fixtures/remove-inferior-datafields/f04/expectedResult.json +31 -0
- package/test-fixtures/remove-inferior-datafields/f04/metadata.json +6 -0
- package/test-fixtures/remove-inferior-datafields/f04/record.json +38 -0
- package/test-fixtures/remove-inferior-datafields/f05/expectedResult.json +34 -0
- package/test-fixtures/remove-inferior-datafields/f05/metadata.json +6 -0
- package/test-fixtures/remove-inferior-datafields/f05/record.json +41 -0
- package/test-fixtures/remove-inferior-datafields/f06/expectedResult.json +16 -0
- package/test-fixtures/remove-inferior-datafields/f06/metadata.json +6 -0
- package/test-fixtures/remove-inferior-datafields/f06/record.json +20 -0
- package/test-fixtures/remove-inferior-datafields/v01/expectedResult.json +6 -0
- package/test-fixtures/remove-inferior-datafields/v01/metadata.json +6 -0
- package/test-fixtures/remove-inferior-datafields/v01/record.json +31 -0
- package/test-fixtures/remove-inferior-datafields/v02/expectedResult.json +6 -0
- package/test-fixtures/remove-inferior-datafields/v02/metadata.json +6 -0
- package/test-fixtures/remove-inferior-datafields/v02/record.json +21 -0
- package/test-fixtures/remove-orphanded-sf6s/f01/expectedResult.json +35 -0
- package/test-fixtures/remove-orphanded-sf6s/f01/metadata.json +6 -0
- package/test-fixtures/remove-orphanded-sf6s/f01/record.json +34 -0
- package/test-fixtures/remove-orphanded-sf6s/f02/expectedResult.json +40 -0
- package/test-fixtures/remove-orphanded-sf6s/f02/metadata.json +6 -0
- package/test-fixtures/remove-orphanded-sf6s/f02/record.json +43 -0
- package/test-fixtures/remove-orphanded-sf6s/v01/expectedResult.json +6 -0
- package/test-fixtures/remove-orphanded-sf6s/v01/metadata.json +6 -0
- package/test-fixtures/remove-orphanded-sf6s/v01/record.json +31 -0
- package/test-fixtures/remove-orphanded-sf6s/v02/expectedResult.json +6 -0
- package/test-fixtures/remove-orphanded-sf6s/v02/metadata.json +6 -0
- package/test-fixtures/remove-orphanded-sf6s/v02/record.json +31 -0
- package/test-fixtures/resolvable-ext-references-melinda.js +0 -27
- package/test-fixtures/sanitize-vocabulary-source-codes/f01/expectedResult.json +32 -0
- package/test-fixtures/sanitize-vocabulary-source-codes/f01/metadata.json +6 -0
- package/test-fixtures/sanitize-vocabulary-source-codes/f01/record.json +32 -0
- package/test-fixtures/sanitize-vocabulary-source-codes/f02/expectedResult.json +24 -0
- package/test-fixtures/sanitize-vocabulary-source-codes/f02/metadata.json +6 -0
- package/test-fixtures/sanitize-vocabulary-source-codes/f02/record.json +24 -0
- package/test-fixtures/sanitize-vocabulary-source-codes/v01/expectedResult.json +12 -0
- package/test-fixtures/sanitize-vocabulary-source-codes/v01/metadata.json +6 -0
- package/test-fixtures/sanitize-vocabulary-source-codes/v01/record.json +24 -0
- package/test-fixtures/sort-relator-terms/f01/expectedResult.json +23 -0
- package/test-fixtures/sort-relator-terms/f01/metadata.json +6 -0
- package/test-fixtures/sort-relator-terms/f01/record.json +22 -0
- package/test-fixtures/sort-relator-terms/f02/expectedResult.json +26 -0
- package/test-fixtures/sort-relator-terms/f02/metadata.json +6 -0
- package/test-fixtures/sort-relator-terms/f02/record.json +22 -0
- package/test-fixtures/sort-relator-terms/v01/expectedResult.json +5 -0
- package/test-fixtures/sort-relator-terms/v01/metadata.json +6 -0
- package/test-fixtures/sort-relator-terms/v01/record.json +22 -0
- package/test-fixtures/sort-relator-terms/v02/expectedResult.json +6 -0
- package/test-fixtures/sort-relator-terms/v02/metadata.json +6 -0
- package/test-fixtures/sort-relator-terms/v02/record.json +14 -0
- package/test-fixtures/sort-subfields/f01/expectedResult.json +24 -0
- package/test-fixtures/sort-subfields/f01/metadata.json +6 -0
- package/test-fixtures/sort-subfields/f01/record.json +20 -0
- package/test-fixtures/sort-subfields/v01/expectedResult.json +5 -0
- package/test-fixtures/sort-subfields/v01/metadata.json +6 -0
- package/test-fixtures/sort-subfields/v01/record.json +24 -0
- package/test-fixtures/sort-subfields/v02/expectedResult.json +6 -0
- package/test-fixtures/sort-subfields/v02/metadata.json +6 -0
- package/test-fixtures/sort-subfields/v02/record.json +8 -0
- package/test-fixtures/strip-punctuation/01/expectedResult.json +12 -0
- package/test-fixtures/strip-punctuation/01/metadata.json +6 -0
- package/test-fixtures/strip-punctuation/01/record.json +37 -0
- package/test-fixtures/strip-punctuation/02/expectedResult.json +4 -0
- package/test-fixtures/strip-punctuation/02/metadata.json +6 -0
- package/test-fixtures/strip-punctuation/02/record.json +14 -0
- package/test-fixtures/strip-punctuation/04/expectedResult.json +6 -0
- package/test-fixtures/strip-punctuation/04/metadata.json +6 -0
- package/test-fixtures/strip-punctuation/04/record.json +22 -0
- package/test-fixtures/strip-punctuation/05/expectedResult.json +6 -0
- package/test-fixtures/strip-punctuation/05/metadata.json +6 -0
- package/test-fixtures/strip-punctuation/05/record.json +12 -0
- package/test-fixtures/strip-punctuation/98/expectedResult.json +44 -0
- package/test-fixtures/strip-punctuation/98/metadata.json +6 -0
- package/test-fixtures/strip-punctuation/98/record.json +45 -0
- package/test-fixtures/strip-punctuation/99/expectedResult.json +16 -0
- package/test-fixtures/strip-punctuation/99/metadata.json +6 -0
- package/test-fixtures/strip-punctuation/99/record.json +16 -0
- package/test-fixtures/subfield0/f01/expectedResult.json +25 -0
- package/test-fixtures/subfield0/f01/metadata.json +6 -0
- package/test-fixtures/subfield0/f01/record.json +23 -0
- package/test-fixtures/subfield0/f02/expectedResult.json +35 -0
- package/test-fixtures/subfield0/f02/metadata.json +6 -0
- package/test-fixtures/subfield0/f02/record.json +41 -0
- package/test-fixtures/subfield0/f03/expectedResult.json +21 -0
- package/test-fixtures/subfield0/f03/metadata.json +7 -0
- package/test-fixtures/subfield0/f03/record.json +24 -0
- package/test-fixtures/subfield0/v01/expectedResult.json +4 -0
- package/test-fixtures/subfield0/v01/metadata.json +6 -0
- package/test-fixtures/subfield0/v01/record.json +23 -0
- package/test-fixtures/subfield0/v02/expectedResult.json +9 -0
- package/test-fixtures/subfield0/v02/metadata.json +6 -0
- package/test-fixtures/subfield0/v02/record.json +38 -0
- package/test-fixtures/typeOfDate-008/01/expectedResult.json +3 -0
- package/test-fixtures/typeOfDate-008/01/metadata.json +4 -0
- package/test-fixtures/typeOfDate-008/01/record.json +14 -0
- package/test-fixtures/typeOfDate-008/02/expectedResult.json +4 -0
- package/test-fixtures/typeOfDate-008/02/metadata.json +4 -0
- package/test-fixtures/typeOfDate-008/02/record.json +14 -0
- package/test-fixtures/typeOfDate-008/03/expectedResult.json +14 -0
- package/test-fixtures/typeOfDate-008/03/metadata.json +5 -0
- package/test-fixtures/typeOfDate-008/03/record.json +14 -0
- package/test-fixtures/typeOfDate-008/04/expectedResult.json +14 -0
- package/test-fixtures/typeOfDate-008/04/metadata.json +5 -0
- package/test-fixtures/typeOfDate-008/04/record.json +14 -0
- package/test-fixtures/typeOfDate-008/05/expectedResult.json +14 -0
- package/test-fixtures/typeOfDate-008/05/metadata.json +5 -0
- package/test-fixtures/typeOfDate-008/05/record.json +14 -0
- package/test-fixtures/update-field-540/f01/expectedResult.json +23 -0
- package/test-fixtures/update-field-540/f01/metadata.json +6 -0
- package/test-fixtures/update-field-540/f01/record.json +23 -0
- package/test-fixtures/update-field-540/v01/expectedResult.json +7 -0
- package/test-fixtures/update-field-540/v01/metadata.json +6 -0
- package/test-fixtures/update-field-540/v01/record.json +23 -0
- package/.travis.yml +0 -10
|
@@ -1,130 +1,773 @@
|
|
|
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
|
-
rangeStart:37,
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
rangeStart:null,
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
rangeStart:
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
rangeStart:null,
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
rangeStart:null,
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
rangeStart:null,
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
rangeStart:null,
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
rangeStart:
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
rangeStart:null,
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
rangeStart:null,
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
rangeStart:null,
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
rangeStart:null,
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
rangeStart:
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
rangeStart:
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.validPuncMarks = exports.finnishTerms = exports.confSpec = void 0;
|
|
7
|
+
// Const finnishTerms = ['ysa', 'yso', 'kassu', 'seko', 'valo', 'kulo', 'puho', 'oiko', 'mero', 'liito', 'fast', 'allars', 'kaunokki'];
|
|
8
|
+
const finnishTerms = [/^ysa$/u, /^yso$/u, /^kassu$/u, /^seko$/u, /^valo$/u, /^kulo$/u, /^puho$/u, /^oiko$/u, /^mero$/u, /^liito$/u, /^fast$/u, /^allars$/u, /^kaunokki$/u, /^bella$/u, /^musa$/u, /^local$/u, /^slm\//u, /^yso\//u, /^kauno\//u];
|
|
9
|
+
exports.finnishTerms = finnishTerms;
|
|
10
|
+
const validPuncMarks = '?"-!,)]';
|
|
11
|
+
// Configuration specification
|
|
12
|
+
exports.validPuncMarks = validPuncMarks;
|
|
13
|
+
const confSpec = [{
|
|
14
|
+
// 010-035 EI
|
|
15
|
+
rangeStart: 10,
|
|
16
|
+
rangeEnd: 35,
|
|
17
|
+
index: null,
|
|
18
|
+
punc: false,
|
|
19
|
+
special: null
|
|
20
|
+
}, {
|
|
21
|
+
// 036 KYLLÄ vain osakentän $b jälkeen
|
|
22
|
+
rangeStart: null,
|
|
23
|
+
rangeEnd: null,
|
|
24
|
+
index: 36,
|
|
25
|
+
punc: true,
|
|
26
|
+
special: {
|
|
27
|
+
afterOnly: 'b',
|
|
28
|
+
strict: true // Punctuation only after $b, because $a is register number
|
|
29
|
+
}
|
|
30
|
+
}, {
|
|
31
|
+
// 037-050 EI
|
|
32
|
+
rangeStart: 37,
|
|
33
|
+
rangeEnd: 50,
|
|
34
|
+
index: null,
|
|
35
|
+
punc: false,
|
|
36
|
+
special: null
|
|
37
|
+
}, {
|
|
38
|
+
// 051 KYLLÄ
|
|
39
|
+
rangeStart: null,
|
|
40
|
+
rangeEnd: null,
|
|
41
|
+
index: 51,
|
|
42
|
+
punc: true,
|
|
43
|
+
special: null
|
|
44
|
+
}, {
|
|
45
|
+
// 052-09X EI
|
|
46
|
+
rangeStart: 52,
|
|
47
|
+
rangeEnd: 99,
|
|
48
|
+
index: null,
|
|
49
|
+
punc: false,
|
|
50
|
+
special: null
|
|
51
|
+
}, {
|
|
52
|
+
// 100 KYLLÄ
|
|
53
|
+
rangeStart: null,
|
|
54
|
+
rangeEnd: null,
|
|
55
|
+
index: 100,
|
|
56
|
+
punc: true,
|
|
57
|
+
special: null
|
|
58
|
+
}, {
|
|
59
|
+
// 110 KYLLÄ
|
|
60
|
+
rangeStart: null,
|
|
61
|
+
rangeEnd: null,
|
|
62
|
+
index: 110,
|
|
63
|
+
punc: true,
|
|
64
|
+
special: null
|
|
65
|
+
}, {
|
|
66
|
+
// 111 KYLLÄ
|
|
67
|
+
rangeStart: null,
|
|
68
|
+
rangeEnd: null,
|
|
69
|
+
index: 111,
|
|
70
|
+
punc: true,
|
|
71
|
+
special: null
|
|
72
|
+
}, {
|
|
73
|
+
// 130 KYLLÄ
|
|
74
|
+
rangeStart: null,
|
|
75
|
+
rangeEnd: null,
|
|
76
|
+
index: 130,
|
|
77
|
+
punc: true,
|
|
78
|
+
special: null
|
|
79
|
+
}, {
|
|
80
|
+
// 210 EI
|
|
81
|
+
rangeStart: null,
|
|
82
|
+
rangeEnd: null,
|
|
83
|
+
index: 210,
|
|
84
|
+
punc: false,
|
|
85
|
+
special: null
|
|
86
|
+
}, {
|
|
87
|
+
// 222 EI
|
|
88
|
+
rangeStart: null,
|
|
89
|
+
rangeEnd: null,
|
|
90
|
+
index: 222,
|
|
91
|
+
punc: false,
|
|
92
|
+
special: null
|
|
93
|
+
}, {
|
|
94
|
+
// 240 EI
|
|
95
|
+
rangeStart: null,
|
|
96
|
+
rangeEnd: null,
|
|
97
|
+
index: 240,
|
|
98
|
+
punc: false,
|
|
99
|
+
special: null
|
|
100
|
+
}, {
|
|
101
|
+
// 242 KYLLÄ Jos viimeinen osakenttä on $y, piste on ennen sitä
|
|
102
|
+
rangeStart: null,
|
|
103
|
+
rangeEnd: null,
|
|
104
|
+
index: 242,
|
|
105
|
+
punc: true,
|
|
106
|
+
special: {
|
|
107
|
+
secondLastIfLast: 'y',
|
|
108
|
+
last: false
|
|
109
|
+
}
|
|
110
|
+
}, {
|
|
111
|
+
// 243 EI
|
|
112
|
+
rangeStart: null,
|
|
113
|
+
rangeEnd: null,
|
|
114
|
+
index: 243,
|
|
115
|
+
punc: false,
|
|
116
|
+
special: null
|
|
117
|
+
}, {
|
|
118
|
+
// 245 KYLLÄ
|
|
119
|
+
rangeStart: null,
|
|
120
|
+
rangeEnd: null,
|
|
121
|
+
index: 245,
|
|
122
|
+
punc: true,
|
|
123
|
+
special: null
|
|
124
|
+
}, {
|
|
125
|
+
// 246-247 EI
|
|
126
|
+
rangeStart: 246,
|
|
127
|
+
rangeEnd: 247,
|
|
128
|
+
index: null,
|
|
129
|
+
punc: false,
|
|
130
|
+
special: null
|
|
131
|
+
}, {
|
|
132
|
+
// 250 KYLLÄ
|
|
133
|
+
rangeStart: null,
|
|
134
|
+
rangeEnd: null,
|
|
135
|
+
index: 250,
|
|
136
|
+
punc: true,
|
|
137
|
+
special: null
|
|
138
|
+
}, {
|
|
139
|
+
// 251 EI
|
|
140
|
+
rangeStart: null,
|
|
141
|
+
rangeEnd: null,
|
|
142
|
+
index: 251,
|
|
143
|
+
punc: false,
|
|
144
|
+
special: null
|
|
145
|
+
}, {
|
|
146
|
+
// 254-256 KYLLÄ
|
|
147
|
+
rangeStart: 254,
|
|
148
|
+
rangeEnd: 256,
|
|
149
|
+
index: null,
|
|
150
|
+
punc: true,
|
|
151
|
+
special: null
|
|
152
|
+
}, {
|
|
153
|
+
// 257
|
|
154
|
+
rangeStart: null,
|
|
155
|
+
rangeEnd: null,
|
|
156
|
+
index: 257,
|
|
157
|
+
punc: true,
|
|
158
|
+
special: {
|
|
159
|
+
noPuncIfField: '2'
|
|
160
|
+
}
|
|
161
|
+
}, {
|
|
162
|
+
// 258 KYLLÄ
|
|
163
|
+
rangeStart: null,
|
|
164
|
+
rangeEnd: null,
|
|
165
|
+
index: 258,
|
|
166
|
+
punc: true,
|
|
167
|
+
special: null
|
|
168
|
+
}, {
|
|
169
|
+
// 260 KYLLÄ Pääsääntö: $a : $b, $c. Tarkista eri poikkeukset ja välimerkitys MARC 21 Full -versiosta
|
|
170
|
+
rangeStart: null,
|
|
171
|
+
rangeEnd: null,
|
|
172
|
+
index: 260,
|
|
173
|
+
punc: true,
|
|
174
|
+
special: {
|
|
175
|
+
afterOnly: 'c',
|
|
176
|
+
strict: false // Others fields may contain abbreviation
|
|
177
|
+
}
|
|
178
|
+
}, {
|
|
179
|
+
// 263 EI
|
|
180
|
+
rangeStart: null,
|
|
181
|
+
rangeEnd: null,
|
|
182
|
+
index: 263,
|
|
183
|
+
punc: false,
|
|
184
|
+
special: null
|
|
185
|
+
}, {
|
|
186
|
+
// 264 KYLLÄ Tarkista poikkeukset MARC 21 -sovellusohjeesta
|
|
187
|
+
rangeStart: null,
|
|
188
|
+
rangeEnd: null,
|
|
189
|
+
index: 264,
|
|
190
|
+
punc: true,
|
|
191
|
+
special: {
|
|
192
|
+
ifBoth: true,
|
|
193
|
+
puncSubField: 'c',
|
|
194
|
+
ifInd2: ['0', '1', '2', '3'],
|
|
195
|
+
ifLastCharNot: ']-)?',
|
|
196
|
+
noPuncIfInd2: ['4']
|
|
197
|
+
}
|
|
198
|
+
}, {
|
|
199
|
+
// 270 EI
|
|
200
|
+
rangeStart: null,
|
|
201
|
+
rangeEnd: null,
|
|
202
|
+
index: 270,
|
|
203
|
+
punc: false,
|
|
204
|
+
special: null
|
|
205
|
+
}, {
|
|
206
|
+
// 300 EI
|
|
207
|
+
rangeStart: null,
|
|
208
|
+
rangeEnd: null,
|
|
209
|
+
index: 300,
|
|
210
|
+
punc: false,
|
|
211
|
+
special: null
|
|
212
|
+
}, {
|
|
213
|
+
// 306 EI
|
|
214
|
+
rangeStart: null,
|
|
215
|
+
rangeEnd: null,
|
|
216
|
+
index: 306,
|
|
217
|
+
punc: false,
|
|
218
|
+
special: null
|
|
219
|
+
}, {
|
|
220
|
+
// 307 KYLLÄ
|
|
221
|
+
rangeStart: null,
|
|
222
|
+
rangeEnd: null,
|
|
223
|
+
index: 307,
|
|
224
|
+
punc: true,
|
|
225
|
+
special: null
|
|
226
|
+
}, {
|
|
227
|
+
// 310 EI
|
|
228
|
+
rangeStart: null,
|
|
229
|
+
rangeEnd: null,
|
|
230
|
+
index: 310,
|
|
231
|
+
punc: false,
|
|
232
|
+
special: null
|
|
233
|
+
}, {
|
|
234
|
+
// 321 EI
|
|
235
|
+
rangeStart: null,
|
|
236
|
+
rangeEnd: null,
|
|
237
|
+
index: 321,
|
|
238
|
+
punc: false,
|
|
239
|
+
special: null
|
|
240
|
+
}, {
|
|
241
|
+
// 335-338 EI
|
|
242
|
+
rangeStart: 335,
|
|
243
|
+
rangeEnd: 338,
|
|
244
|
+
index: null,
|
|
245
|
+
punc: false,
|
|
246
|
+
special: null
|
|
247
|
+
}, {
|
|
248
|
+
// 340 KYLLÄ Vain joidenkin osakenttien jälkeen. Tarkista osakentät MARC 21 Full -versiosta
|
|
249
|
+
rangeStart: null,
|
|
250
|
+
rangeEnd: null,
|
|
251
|
+
index: 340,
|
|
252
|
+
punc: true,
|
|
253
|
+
special: {
|
|
254
|
+
lastOf: ['a', 'd', 'e', 'f', 'h', 'i'],
|
|
255
|
+
mandatory: ['b']
|
|
256
|
+
}
|
|
257
|
+
}, {
|
|
258
|
+
// 341-342 EI
|
|
259
|
+
rangeStart: 341,
|
|
260
|
+
rangeEnd: 342,
|
|
261
|
+
index: null,
|
|
262
|
+
punc: false,
|
|
263
|
+
special: null
|
|
264
|
+
}, {
|
|
265
|
+
// 343 KYLLÄ
|
|
266
|
+
rangeStart: null,
|
|
267
|
+
rangeEnd: null,
|
|
268
|
+
index: 343,
|
|
269
|
+
punc: true,
|
|
270
|
+
special: null
|
|
271
|
+
}, {
|
|
272
|
+
// 344-348 EI
|
|
273
|
+
rangeStart: 344,
|
|
274
|
+
rangeEnd: 348,
|
|
275
|
+
index: null,
|
|
276
|
+
punc: false,
|
|
277
|
+
special: null
|
|
278
|
+
}, {
|
|
279
|
+
// 351-352 KYLLÄ
|
|
280
|
+
rangeStart: 351,
|
|
281
|
+
rangeEnd: 352,
|
|
282
|
+
index: null,
|
|
283
|
+
punc: true,
|
|
284
|
+
special: null
|
|
285
|
+
}, {
|
|
286
|
+
// 355 EI
|
|
287
|
+
rangeStart: null,
|
|
288
|
+
rangeEnd: null,
|
|
289
|
+
index: 355,
|
|
290
|
+
punc: false,
|
|
291
|
+
special: null
|
|
292
|
+
}, {
|
|
293
|
+
// 357 EI
|
|
294
|
+
rangeStart: null,
|
|
295
|
+
rangeEnd: null,
|
|
296
|
+
index: 357,
|
|
297
|
+
punc: false,
|
|
298
|
+
special: null
|
|
299
|
+
}, {
|
|
300
|
+
// 362 KYLLÄ
|
|
301
|
+
rangeStart: null,
|
|
302
|
+
rangeEnd: null,
|
|
303
|
+
index: 362,
|
|
304
|
+
punc: true,
|
|
305
|
+
special: null
|
|
306
|
+
}, {
|
|
307
|
+
// 363 EI
|
|
308
|
+
rangeStart: null,
|
|
309
|
+
rangeEnd: null,
|
|
310
|
+
index: 363,
|
|
311
|
+
punc: false,
|
|
312
|
+
special: null
|
|
313
|
+
}, {
|
|
314
|
+
// 365-366 EI
|
|
315
|
+
rangeStart: 365,
|
|
316
|
+
rangeEnd: 366,
|
|
317
|
+
index: null,
|
|
318
|
+
punc: false,
|
|
319
|
+
special: null
|
|
320
|
+
}, {
|
|
321
|
+
// 370 EI
|
|
322
|
+
rangeStart: null,
|
|
323
|
+
rangeEnd: null,
|
|
324
|
+
index: 370,
|
|
325
|
+
punc: false,
|
|
326
|
+
special: null
|
|
327
|
+
}, {
|
|
328
|
+
// 377 EI
|
|
329
|
+
rangeStart: null,
|
|
330
|
+
rangeEnd: null,
|
|
331
|
+
index: 377,
|
|
332
|
+
punc: false,
|
|
333
|
+
special: null
|
|
334
|
+
}, {
|
|
335
|
+
// 380-388 EI
|
|
336
|
+
rangeStart: 380,
|
|
337
|
+
rangeEnd: 388,
|
|
338
|
+
index: null,
|
|
339
|
+
punc: false,
|
|
340
|
+
special: null
|
|
341
|
+
}, {
|
|
342
|
+
// 490 EI
|
|
343
|
+
rangeStart: null,
|
|
344
|
+
rangeEnd: null,
|
|
345
|
+
index: 490,
|
|
346
|
+
punc: false,
|
|
347
|
+
special: null
|
|
348
|
+
}, {
|
|
349
|
+
// 500-505 KYLLÄ
|
|
350
|
+
rangeStart: 500,
|
|
351
|
+
rangeEnd: 505,
|
|
352
|
+
index: null,
|
|
353
|
+
punc: true,
|
|
354
|
+
special: null
|
|
355
|
+
}, {
|
|
356
|
+
// 506 KYLLÄ
|
|
357
|
+
index: 506,
|
|
358
|
+
punc: true,
|
|
359
|
+
special: {
|
|
360
|
+
noPuncIfField: 'f'
|
|
361
|
+
}
|
|
362
|
+
}, {
|
|
363
|
+
// 507-509 KYLLÄ
|
|
364
|
+
rangeStart: 507,
|
|
365
|
+
rangeEnd: 509,
|
|
366
|
+
index: null,
|
|
367
|
+
punc: true,
|
|
368
|
+
special: null
|
|
369
|
+
}, {
|
|
370
|
+
// 510 EI
|
|
371
|
+
rangeStart: null,
|
|
372
|
+
rangeEnd: null,
|
|
373
|
+
index: 510,
|
|
374
|
+
punc: false,
|
|
375
|
+
special: null
|
|
376
|
+
}, {
|
|
377
|
+
// 511-518 KYLLÄ
|
|
378
|
+
rangeStart: 511,
|
|
379
|
+
rangeEnd: 518,
|
|
380
|
+
index: null,
|
|
381
|
+
punc: true,
|
|
382
|
+
special: null
|
|
383
|
+
}, {
|
|
384
|
+
// 520 KYLLÄ Jos viimeinen osakenttä on $u, piste on ennen sitä
|
|
385
|
+
rangeStart: null,
|
|
386
|
+
rangeEnd: null,
|
|
387
|
+
index: 520,
|
|
388
|
+
punc: true,
|
|
389
|
+
special: {
|
|
390
|
+
secondLastIfLast: 'u'
|
|
391
|
+
// Last: false //$u is URL and hence should not be checked as URL's can have '.' at end
|
|
392
|
+
}
|
|
393
|
+
}, {
|
|
394
|
+
// 521-526 KYLLÄ
|
|
395
|
+
rangeStart: 521,
|
|
396
|
+
rangeEnd: 526,
|
|
397
|
+
index: null,
|
|
398
|
+
punc: true,
|
|
399
|
+
special: null
|
|
400
|
+
}, {
|
|
401
|
+
// 530 KYLLÄ
|
|
402
|
+
rangeStart: null,
|
|
403
|
+
rangeEnd: null,
|
|
404
|
+
index: 530,
|
|
405
|
+
punc: true,
|
|
406
|
+
special: null
|
|
407
|
+
}, {
|
|
408
|
+
// 532 EI
|
|
409
|
+
rangeStart: null,
|
|
410
|
+
rangeEnd: null,
|
|
411
|
+
index: 532,
|
|
412
|
+
punc: false,
|
|
413
|
+
special: null
|
|
414
|
+
}, {
|
|
415
|
+
// 533-534 KYLLÄ
|
|
416
|
+
rangeStart: 533,
|
|
417
|
+
rangeEnd: 534,
|
|
418
|
+
index: null,
|
|
419
|
+
punc: true,
|
|
420
|
+
special: null
|
|
421
|
+
}, {
|
|
422
|
+
// 535-536 EI
|
|
423
|
+
rangeStart: 535,
|
|
424
|
+
rangeEnd: 536,
|
|
425
|
+
index: null,
|
|
426
|
+
punc: false,
|
|
427
|
+
special: null
|
|
428
|
+
}, {
|
|
429
|
+
// 538 KYLLÄ Jos viimeinen osakenttä on $u, piste on ennen sitä
|
|
430
|
+
rangeStart: null,
|
|
431
|
+
rangeEnd: null,
|
|
432
|
+
index: 538,
|
|
433
|
+
punc: true,
|
|
434
|
+
special: {
|
|
435
|
+
secondLastIfLast: 'u'
|
|
436
|
+
// Last: false //$u is URL and hence should not be checked as URL's can have '.' at end
|
|
437
|
+
}
|
|
438
|
+
}, {
|
|
439
|
+
// 540-541 KYLLÄ
|
|
440
|
+
rangeStart: 540,
|
|
441
|
+
rangeEnd: 541,
|
|
442
|
+
index: null,
|
|
443
|
+
punc: true,
|
|
444
|
+
special: {
|
|
445
|
+
noPuncIfField: 'u'
|
|
446
|
+
}
|
|
447
|
+
}, {
|
|
448
|
+
// 542 EI
|
|
449
|
+
rangeStart: null,
|
|
450
|
+
rangeEnd: null,
|
|
451
|
+
index: 542,
|
|
452
|
+
punc: false,
|
|
453
|
+
special: null
|
|
454
|
+
}, {
|
|
455
|
+
// 544-547 KYLLÄ
|
|
456
|
+
rangeStart: 544,
|
|
457
|
+
rangeEnd: 547,
|
|
458
|
+
index: null,
|
|
459
|
+
punc: true,
|
|
460
|
+
special: null
|
|
461
|
+
}, {
|
|
462
|
+
// 550 KYLLÄ
|
|
463
|
+
rangeStart: null,
|
|
464
|
+
rangeEnd: null,
|
|
465
|
+
index: 550,
|
|
466
|
+
punc: true,
|
|
467
|
+
special: null
|
|
468
|
+
}, {
|
|
469
|
+
// 552 KYLLÄ
|
|
470
|
+
rangeStart: null,
|
|
471
|
+
rangeEnd: null,
|
|
472
|
+
index: 552,
|
|
473
|
+
punc: true,
|
|
474
|
+
special: null
|
|
475
|
+
}, {
|
|
476
|
+
// 555-556 KYLLÄ
|
|
477
|
+
rangeStart: 555,
|
|
478
|
+
rangeEnd: 556,
|
|
479
|
+
index: null,
|
|
480
|
+
punc: true,
|
|
481
|
+
special: null
|
|
482
|
+
}, {
|
|
483
|
+
// 561-563 KYLLÄ
|
|
484
|
+
rangeStart: 561,
|
|
485
|
+
rangeEnd: 563,
|
|
486
|
+
index: null,
|
|
487
|
+
punc: true,
|
|
488
|
+
special: null
|
|
489
|
+
}, {
|
|
490
|
+
// 565 EI
|
|
491
|
+
rangeStart: null,
|
|
492
|
+
rangeEnd: null,
|
|
493
|
+
index: 565,
|
|
494
|
+
punc: false,
|
|
495
|
+
special: null
|
|
496
|
+
}, {
|
|
497
|
+
// 567 KYLLÄ osakentän $a jälkeen, EI muiden osakenttien jälkeen
|
|
498
|
+
rangeStart: null,
|
|
499
|
+
rangeEnd: null,
|
|
500
|
+
index: 567,
|
|
501
|
+
punc: true,
|
|
502
|
+
special: {
|
|
503
|
+
afterOnly: 'a',
|
|
504
|
+
strict: true // $b can only be controlled term
|
|
505
|
+
}
|
|
506
|
+
}, {
|
|
507
|
+
// 580-581 KYLLÄ
|
|
508
|
+
rangeStart: 580,
|
|
509
|
+
rangeEnd: 581,
|
|
510
|
+
index: null,
|
|
511
|
+
punc: true,
|
|
512
|
+
special: null
|
|
513
|
+
}, {
|
|
514
|
+
// 583 EI
|
|
515
|
+
rangeStart: null,
|
|
516
|
+
rangeEnd: null,
|
|
517
|
+
index: 583,
|
|
518
|
+
punc: false,
|
|
519
|
+
special: null
|
|
520
|
+
}, {
|
|
521
|
+
// 584-585 KYLLÄ
|
|
522
|
+
rangeStart: 584,
|
|
523
|
+
rangeEnd: 585,
|
|
524
|
+
index: null,
|
|
525
|
+
punc: true,
|
|
526
|
+
special: null
|
|
527
|
+
}, {
|
|
528
|
+
// 586 EI
|
|
529
|
+
rangeStart: null,
|
|
530
|
+
rangeEnd: null,
|
|
531
|
+
index: 586,
|
|
532
|
+
punc: false,
|
|
533
|
+
special: null
|
|
534
|
+
}, {
|
|
535
|
+
// 588 KYLLÄ
|
|
536
|
+
rangeStart: null,
|
|
537
|
+
rangeEnd: null,
|
|
538
|
+
index: null,
|
|
539
|
+
punc: true,
|
|
540
|
+
special: null
|
|
541
|
+
}, {
|
|
542
|
+
// 59X EI
|
|
543
|
+
rangeStart: 590,
|
|
544
|
+
rangeEnd: 599,
|
|
545
|
+
index: null,
|
|
546
|
+
punc: false,
|
|
547
|
+
special: null
|
|
548
|
+
}, {
|
|
549
|
+
// 600 KYLLÄ
|
|
550
|
+
rangeStart: null,
|
|
551
|
+
rangeEnd: null,
|
|
552
|
+
index: 600,
|
|
553
|
+
punc: true,
|
|
554
|
+
special: null
|
|
555
|
+
}, {
|
|
556
|
+
// 610 KYLLÄ
|
|
557
|
+
rangeStart: null,
|
|
558
|
+
rangeEnd: null,
|
|
559
|
+
index: 610,
|
|
560
|
+
punc: true,
|
|
561
|
+
special: null
|
|
562
|
+
}, {
|
|
563
|
+
// 611 KYLLÄ
|
|
564
|
+
rangeStart: null,
|
|
565
|
+
rangeEnd: null,
|
|
566
|
+
index: 611,
|
|
567
|
+
punc: true,
|
|
568
|
+
special: null
|
|
569
|
+
}, {
|
|
570
|
+
// 630 KYLLÄ
|
|
571
|
+
rangeStart: null,
|
|
572
|
+
rangeEnd: null,
|
|
573
|
+
index: 630,
|
|
574
|
+
punc: true,
|
|
575
|
+
special: null
|
|
576
|
+
}, {
|
|
577
|
+
// 647-651 EI suomalaisten sanastojen termeihin, muihin sanaston käytännön mukaan, yleensä KYLLÄ
|
|
578
|
+
rangeStart: 647,
|
|
579
|
+
rangeEnd: 651,
|
|
580
|
+
index: null,
|
|
581
|
+
punc: false,
|
|
582
|
+
special: {
|
|
583
|
+
termField: '2',
|
|
584
|
+
finnishTerms,
|
|
585
|
+
else: true
|
|
586
|
+
}
|
|
587
|
+
}, {
|
|
588
|
+
// 653 EI
|
|
589
|
+
rangeStart: null,
|
|
590
|
+
rangeEnd: null,
|
|
591
|
+
index: 653,
|
|
592
|
+
punc: false,
|
|
593
|
+
special: null
|
|
594
|
+
}, {
|
|
595
|
+
// 654-662 EI suomalaisten sanastojen termeihin, muihin sanaston käytännön mukaan, yleensä KYLLÄ
|
|
596
|
+
rangeStart: 654,
|
|
597
|
+
rangeEnd: 662,
|
|
598
|
+
index: null,
|
|
599
|
+
punc: false,
|
|
600
|
+
special: {
|
|
601
|
+
termField: '2',
|
|
602
|
+
finnishTerms,
|
|
603
|
+
else: true
|
|
604
|
+
}
|
|
605
|
+
}, {
|
|
606
|
+
// 69X EI
|
|
607
|
+
rangeStart: 690,
|
|
608
|
+
rangeEnd: 699,
|
|
609
|
+
index: null,
|
|
610
|
+
punc: false,
|
|
611
|
+
special: null
|
|
612
|
+
}, {
|
|
613
|
+
// 700 KYLLÄ
|
|
614
|
+
rangeStart: null,
|
|
615
|
+
rangeEnd: null,
|
|
616
|
+
index: 700,
|
|
617
|
+
punc: true,
|
|
618
|
+
special: null
|
|
619
|
+
}, {
|
|
620
|
+
// 710 KYLLÄ
|
|
621
|
+
rangeStart: null,
|
|
622
|
+
rangeEnd: null,
|
|
623
|
+
index: 710,
|
|
624
|
+
punc: true,
|
|
625
|
+
special: null
|
|
626
|
+
}, {
|
|
627
|
+
// 711 KYLLÄ
|
|
628
|
+
rangeStart: null,
|
|
629
|
+
rangeEnd: null,
|
|
630
|
+
index: 711,
|
|
631
|
+
punc: true,
|
|
632
|
+
special: null
|
|
633
|
+
}, {
|
|
634
|
+
// 720 EI
|
|
635
|
+
rangeStart: null,
|
|
636
|
+
rangeEnd: null,
|
|
637
|
+
index: 720,
|
|
638
|
+
punc: false,
|
|
639
|
+
special: null
|
|
640
|
+
}, {
|
|
641
|
+
// 730 KYLLÄ
|
|
642
|
+
rangeStart: null,
|
|
643
|
+
rangeEnd: null,
|
|
644
|
+
index: 730,
|
|
645
|
+
punc: true,
|
|
646
|
+
special: null
|
|
647
|
+
}, {
|
|
648
|
+
// 740 KYLLÄ
|
|
649
|
+
rangeStart: null,
|
|
650
|
+
rangeEnd: null,
|
|
651
|
+
index: 740,
|
|
652
|
+
punc: true,
|
|
653
|
+
special: null
|
|
654
|
+
}, {
|
|
655
|
+
// 751 EI
|
|
656
|
+
rangeStart: null,
|
|
657
|
+
rangeEnd: null,
|
|
658
|
+
index: 751,
|
|
659
|
+
punc: false,
|
|
660
|
+
special: null
|
|
661
|
+
}, {
|
|
662
|
+
// 752 KYLLÄ
|
|
663
|
+
rangeStart: null,
|
|
664
|
+
rangeEnd: null,
|
|
665
|
+
index: 752,
|
|
666
|
+
punc: true,
|
|
667
|
+
special: null
|
|
668
|
+
}, {
|
|
669
|
+
// 753 EI
|
|
670
|
+
rangeStart: null,
|
|
671
|
+
rangeEnd: null,
|
|
672
|
+
index: 753,
|
|
673
|
+
punc: false,
|
|
674
|
+
special: null
|
|
675
|
+
}, {
|
|
676
|
+
// 754 KYLLÄ
|
|
677
|
+
rangeStart: null,
|
|
678
|
+
rangeEnd: null,
|
|
679
|
+
index: 754,
|
|
680
|
+
punc: true,
|
|
681
|
+
special: null
|
|
682
|
+
}, {
|
|
683
|
+
// 758 EI
|
|
684
|
+
rangeStart: null,
|
|
685
|
+
rangeEnd: null,
|
|
686
|
+
index: 758,
|
|
687
|
+
punc: false,
|
|
688
|
+
special: null
|
|
689
|
+
}, {
|
|
690
|
+
// 760-787 KYLLÄ osakentän $a jälkeen, EI muiden osakenttien jälkeen
|
|
691
|
+
rangeStart: 760,
|
|
692
|
+
rangeEnd: 787,
|
|
693
|
+
index: null,
|
|
694
|
+
punc: true,
|
|
695
|
+
special: {
|
|
696
|
+
afterOnly: 'a',
|
|
697
|
+
strict: false
|
|
698
|
+
}
|
|
699
|
+
}, {
|
|
700
|
+
// 800 KYLLÄ
|
|
701
|
+
rangeStart: null,
|
|
702
|
+
rangeEnd: null,
|
|
703
|
+
index: 800,
|
|
704
|
+
punc: true,
|
|
705
|
+
special: null
|
|
706
|
+
}, {
|
|
707
|
+
// 810 KYLLÄ
|
|
708
|
+
rangeStart: null,
|
|
709
|
+
rangeEnd: null,
|
|
710
|
+
index: 810,
|
|
711
|
+
punc: true,
|
|
712
|
+
special: null
|
|
713
|
+
}, {
|
|
714
|
+
// 811 KYLLÄ
|
|
715
|
+
rangeStart: null,
|
|
716
|
+
rangeEnd: null,
|
|
717
|
+
index: 811,
|
|
718
|
+
punc: true,
|
|
719
|
+
special: null
|
|
720
|
+
}, {
|
|
721
|
+
// 830 KYLLÄ
|
|
722
|
+
rangeStart: null,
|
|
723
|
+
rangeEnd: null,
|
|
724
|
+
index: 830,
|
|
725
|
+
punc: true,
|
|
726
|
+
special: null
|
|
727
|
+
}, {
|
|
728
|
+
// 850 EI
|
|
729
|
+
rangeStart: null,
|
|
730
|
+
rangeEnd: null,
|
|
731
|
+
index: 850,
|
|
732
|
+
punc: false,
|
|
733
|
+
special: null
|
|
734
|
+
}, {
|
|
735
|
+
// 852 EI
|
|
736
|
+
rangeStart: null,
|
|
737
|
+
rangeEnd: null,
|
|
738
|
+
index: 852,
|
|
739
|
+
punc: false,
|
|
740
|
+
special: null
|
|
741
|
+
}, {
|
|
742
|
+
// 856 EI
|
|
743
|
+
rangeStart: null,
|
|
744
|
+
rangeEnd: null,
|
|
745
|
+
index: 856,
|
|
746
|
+
punc: false,
|
|
747
|
+
special: null
|
|
748
|
+
}, {
|
|
749
|
+
// 880 Samoin kuin vastaavat kentät
|
|
750
|
+
rangeStart: null,
|
|
751
|
+
rangeEnd: null,
|
|
752
|
+
index: 880,
|
|
753
|
+
punc: null,
|
|
754
|
+
special: {
|
|
755
|
+
linked: '6'
|
|
756
|
+
}
|
|
757
|
+
}, {
|
|
758
|
+
// 882-887 EI
|
|
759
|
+
rangeStart: 882,
|
|
760
|
+
rangeEnd: 887,
|
|
761
|
+
index: null,
|
|
762
|
+
punc: false,
|
|
763
|
+
special: null
|
|
764
|
+
}, {
|
|
765
|
+
// 9XX EI
|
|
766
|
+
rangeStart: 900,
|
|
767
|
+
rangeEnd: 999,
|
|
768
|
+
index: null,
|
|
769
|
+
punc: false,
|
|
770
|
+
special: null
|
|
771
|
+
}];
|
|
772
|
+
exports.confSpec = confSpec;
|
|
130
773
|
//# sourceMappingURL=ending-punctuation-conf.js.map
|