remove console.log
This commit is contained in:
parent
1f8011eb26
commit
de931e6ccd
|
@ -17,6 +17,8 @@ yarn start
|
|||
|
||||
## Building
|
||||
|
||||
⚠ Don't use `yarn build`. Use one of the commands below: ⚠
|
||||
|
||||
### Website
|
||||
|
||||
To build the [Pashto Verb Explorer](https://verbs.lingdocs.com) website:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lingdocs/pashto-inflector",
|
||||
"version": "0.1.9",
|
||||
"version": "0.2.0",
|
||||
"author": "lingdocs.com",
|
||||
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
|
||||
"homepage": "https://verbs.lingdocs.com",
|
||||
|
|
|
@ -338,9 +338,6 @@ function makeParticipleContent(info: T.NonComboVerbInfo): T.ParticipleContent {
|
|||
const present = ("complement" in info && spaceInForm(info.root.imperfective))
|
||||
? concatInflections(info.complement, stativeAux[transitivity].participle.present as T.UnisexInflections)
|
||||
: inflectYey(noPersInfs(info.participle.present));
|
||||
if ("objComplement" in info) {
|
||||
console.log(info.objComplement, past);
|
||||
}
|
||||
return {
|
||||
present, // PAST PARTICIPLE inflected
|
||||
past, // PRESENT PARTICIPLE inflected
|
||||
|
|
Loading…
Reference in New Issue