Last active
November 16, 2018 15:49
-
-
Save paceaux/d31f663abf1a09113754173cc666a7cb to your computer and use it in GitHub Desktop.
Verb Conjugations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const verbAspects = ['simple', 'continuous', 'perfect', 'perfectContinuous']; | |
const verbTenses = ['past', 'present', 'future']; | |
const verbMoods = ['indicative', 'imperative', 'subjunctive']; | |
const moods = { | |
indicative: { | |
present: { | |
simple: 'goes', | |
continuous: 'going', | |
perfect: 'have gone', | |
perfectContinuous: 'have been going', | |
}, | |
past: { | |
simple: 'went', | |
continuous: 'was going', | |
perfect: 'had gone', | |
perfectContinuous: 'had been going', | |
}, | |
future: { | |
simple: 'will go', | |
continuous: 'will be going', | |
perfect: 'will have gone', | |
perfectContinuous: 'will have been going', | |
}, | |
}, | |
imperative: {}, | |
subjunctive: {}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment