@interslavic/database-engine-core
Advanced tools
Comparing version
@@ -55,1 +55,2 @@ "use strict"; | ||
exports.LANGUAGE_CODES = Object.keys(exports.LANGUAGE_NAMES); | ||
//# sourceMappingURL=constants.js.map |
@@ -7,1 +7,2 @@ "use strict"; | ||
tslib_1.__exportStar(require("./tables"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -7,1 +7,2 @@ "use strict"; | ||
tslib_1.__exportStar(require("./synset"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -6,1 +6,2 @@ "use strict"; | ||
tslib_1.__exportStar(require("./InterslavicLemma"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -15,1 +15,2 @@ "use strict"; | ||
exports.InterslavicLemma = InterslavicLemma; | ||
//# sourceMappingURL=InterslavicLemma.js.map |
@@ -28,1 +28,2 @@ "use strict"; | ||
exports.Lemma = Lemma; | ||
//# sourceMappingURL=Lemma.js.map |
@@ -77,1 +77,2 @@ "use strict"; | ||
}); | ||
//# sourceMappingURL=Lemma.test.js.map |
@@ -34,1 +34,2 @@ "use strict"; | ||
} | ||
//# sourceMappingURL=parseLemma.js.map |
@@ -5,1 +5,2 @@ "use strict"; | ||
tslib_1.__exportStar(require("./MultilingualSynset"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -44,1 +44,2 @@ "use strict"; | ||
exports.MultilingualSynset = MultilingualSynset; | ||
//# sourceMappingURL=MultilingualSynset.js.map |
@@ -6,1 +6,2 @@ "use strict"; | ||
tslib_1.__exportStar(require("./Synset"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -11,1 +11,2 @@ "use strict"; | ||
exports.InterslavicSynset = InterslavicSynset; | ||
//# sourceMappingURL=InterslavicSynset.js.map |
@@ -16,1 +16,2 @@ "use strict"; | ||
exports.stripMetacharacters = stripMetacharacters; | ||
//# sourceMappingURL=metacharacters.js.map |
@@ -29,1 +29,2 @@ "use strict"; | ||
}); | ||
//# sourceMappingURL=metacharacters.test.js.map |
@@ -16,2 +16,3 @@ "use strict"; | ||
.split(lemmaString.includes(';') ? ';' : ',') | ||
.filter(Boolean) | ||
.map((value) => lemma_1.Lemma.parse(annotations.unstash(value.trim()))) | ||
@@ -57,1 +58,2 @@ : []; | ||
} | ||
//# sourceMappingURL=parseSynset.js.map |
@@ -105,4 +105,6 @@ "use strict"; | ||
const hasCommas = this.lemmas.some((l) => l.value.includes(',')); | ||
const jointLemmas = this.lemmas.map(String).join(hasCommas ? '; ' : ', '); | ||
return ((this.verified ? '' : '!') + | ||
this.lemmas.map(String).join(hasCommas ? '; ' : ', ')); | ||
jointLemmas + | ||
(this.lemmas.length === 1 && hasCommas ? ';' : '')); | ||
} | ||
@@ -117,1 +119,2 @@ static parse(str) { | ||
} | ||
//# sourceMappingURL=Synset.js.map |
@@ -183,2 +183,5 @@ "use strict"; | ||
["з'явитися", void 0], | ||
['extra comma,', 'extra comma'], | ||
['extra,,comma,', 'extra, comma'], | ||
['той, що є;', void 0], | ||
['сей (устар.; местоим.)', void 0], | ||
@@ -214,1 +217,2 @@ ['за (напр.: по грибы, за хлебом), по', void 0], | ||
}); | ||
//# sourceMappingURL=Synset.test.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=tables.js.map |
@@ -5,1 +5,2 @@ "use strict"; | ||
tslib_1.__exportStar(require("./isIterable"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -8,1 +8,2 @@ "use strict"; | ||
exports.isIterable = isIterable; | ||
//# sourceMappingURL=isIterable.js.map |
{ | ||
"name": "@interslavic/database-engine-core", | ||
"version": "1.0.8", | ||
"version": "1.1.0", | ||
"repository": { | ||
@@ -23,6 +23,6 @@ "type": "git", | ||
"devDependencies": { | ||
"@interslavic/eslint-config-database-engine": "^1.0.8", | ||
"@interslavic/eslint-config-database-engine": "^1.1.0", | ||
"@interslavic/jest-config-database-engine": "^1.0.8", | ||
"@interslavic/prettier-config-database-engine": "^1.0.8", | ||
"@interslavic/typescript-config-database-engine": "^1.0.8", | ||
"@interslavic/typescript-config-database-engine": "^1.1.0", | ||
"ts-node": "^10.9.1", | ||
@@ -44,3 +44,3 @@ "typescript": "^4.9.5" | ||
}, | ||
"gitHead": "68f37690ed207f953c06cefd062542996a378320" | ||
"gitHead": "aa7637875ccd6a3d9886a6878d0ff650568b63c6" | ||
} |
@@ -17,2 +17,3 @@ import { Lemma } from '../lemma'; | ||
.split(lemmaString.includes(';') ? ';' : ',') | ||
.filter(Boolean) | ||
.map((value) => Lemma.parse(annotations.unstash(value.trim()))) | ||
@@ -19,0 +20,0 @@ : []; |
@@ -234,2 +234,5 @@ import { Lemma } from '../lemma'; | ||
["з'явитися", void 0], | ||
['extra comma,', 'extra comma'], | ||
['extra,,comma,', 'extra, comma'], | ||
['той, що є;', void 0], | ||
['сей (устар.; местоим.)', void 0], | ||
@@ -236,0 +239,0 @@ ['за (напр.: по грибы, за хлебом), по', void 0], |
@@ -147,6 +147,8 @@ import { isIterable } from '../../utils'; | ||
const hasCommas = this.lemmas.some((l) => l.value.includes(',')); | ||
const jointLemmas = this.lemmas.map(String).join(hasCommas ? '; ' : ', '); | ||
return ( | ||
(this.verified ? '' : '!') + | ||
this.lemmas.map(String).join(hasCommas ? '; ' : ', ') | ||
jointLemmas + | ||
(this.lemmas.length === 1 && hasCommas ? ';' : '') | ||
); | ||
@@ -153,0 +155,0 @@ } |
Sorry, the diff of this file is not supported yet
121374
29.02%87
29.85%1693
0.71%