Skip to content

Instantly share code, notes, and snippets.

@paceaux
Last active November 16, 2018 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paceaux/d31f663abf1a09113754173cc666a7cb to your computer and use it in GitHub Desktop.
Save paceaux/d31f663abf1a09113754173cc666a7cb to your computer and use it in GitHub Desktop.
Verb Conjugations
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