-
Notifications
You must be signed in to change notification settings - Fork 19
Home
Vignesh Ravichandran edited this page Apr 5, 2017
·
2 revisions
// First get a conjugator object for language of your choice. (We currently only support korean and hindi)
let koreanConjugator = Conjugator.create('korean');
// Call the conjugator object's conjugate method to conjugate the verb of your liking
let conjugatedWord = koreanConjugator.conjugate(‘하다’, {
// Rules Object
tense: 'future',
});
Key | Type | Description |
---|---|---|
tense (required) | String | Tense to conjugate the word. |