Skip to content
Vignesh Ravichandran edited this page Apr 5, 2017 · 2 revisions

Korean Conjugator

// 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',
  });

Rules Object

Key Type Description
tense (required) String Tense to conjugate the word.
Clone this wiki locally