Skip to content

Instantly share code, notes, and snippets.

@paceaux
Created October 5, 2018 21:49
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paceaux/f0f62e5a4f1b470d9cd13031607c44e3 to your computer and use it in GitHub Desktop.
Save paceaux/f0f62e5a4f1b470d9cd13031607c44e3 to your computer and use it in GitHub Desktop.
English conjunctions
/*
* Conjunctions
* https://www.english-grammar-revolution.com/list-of-conjunctions.html
*/
module.exports = [
{
conjunction: ['and'],
type: 'coordinating',
},
{
conjunction: ['for'],
type: 'coordinating',
},
{
conjunction: ['nor'],
type: 'coordinating',
},
{
conjunction: ['but'],
type: 'coordinating',
},
{
conjunction: ['or'],
type: 'coordinating',
},
{
conjunction: ['yet'],
type: 'coordinating',
},
{
conjunction: ['so'],
type: 'coordinating',
},
{
conjunction: ['after'],
type: 'subordinating',
},
{
conjunction: ['although'],
type: 'subordinating',
},
{
conjunction: ['as'],
type: 'subordinating',
},
{
conjunction: ['as if'],
type: 'subordinating',
},
{
conjunction: ['as long as'],
type: 'subordinating',
},
{
conjunction: ['as much as'],
type: 'subordinating',
},
{
conjunction: ['as soon as'],
type: 'subordinating',
},
{
conjunction: ['as though'],
type: 'subordinating',
},
{
conjunction: ['because'],
type: 'subordinating',
},
{
conjunction: ['before'],
type: 'subordinating',
},
{
conjunction: ['by the time'],
type: 'subordinating',
},
{
conjunction: ['even if'],
type: 'subordinating',
},
{
conjunction: ['if'],
type: 'subordinating',
},
{
conjunction: ['in case'],
type: 'subordinating',
},
{
conjunction: ['lest'],
type: 'subordinating',
},
{
conjunction: ['once'],
type: 'subordinating',
},
{
conjunction: ['only if'],
type: 'subordinating',
},
{
conjunction: ['since'],
type: 'subordinating',
},
{
conjunction: ['so that'],
type: 'subordinating',
},
{
conjunction: ['than'],
type: 'subordinating',
},
{
conjunction: ['that'],
type: 'subordinating',
},
{
conjunction: ['though'],
type: 'subordinating',
},
{
conjunction: ['till'],
type: 'subordinating',
},
{
conjunction: ['unless'],
type: 'subordinating',
},
{
conjunction: ['until'],
type: 'subordinating',
},
{
conjunction: ['when'],
type: 'subordinating',
},
{
conjunction: ['whenever'],
type: 'subordinating',
},
{
conjunction: ['where'],
type: 'subordinating',
},
{
conjunction: ['wherever'],
type: 'subordinating',
},
{
conjunction: ['while'],
type: 'subordinating',
},
{
conjunction: ['until'],
type: 'subordinating',
},
{
conjunction: ['both','and'],
type: 'correlating',
},
{
conjunction: ['either','or'],
type: 'correlating',
},
{
conjunction: ['neither','nor'],
type: 'correlating',
},
{
conjunction: ['but only','but also'],
type: 'correlating',
},
{
conjunction: ['whether','or'],
type: 'correlating',
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment