Created
September 17, 2018 13:39
-
-
Save paceaux/8b5da32a2e8a0b75ffae5b9a84f88553 to your computer and use it in GitHub Desktop.
English Prepositions for JavaScript
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
/* | |
* English preposition list | |
* https://www.talkenglish.com/vocabulary/top-50-prepositions.aspx | |
*/ | |
module.exports = [ | |
'of', | |
'with', | |
'at', | |
'from', | |
'into', | |
'during', | |
'including', | |
'until', | |
'against', | |
'among', | |
'throughout', | |
'despite', | |
'towards', | |
'upon', | |
'concerning', | |
'to', | |
'in', | |
'for', | |
'on', | |
'by', | |
'about', | |
'like', | |
'through', | |
'over', | |
'before', | |
'between', | |
'after', | |
'since', | |
'without', | |
'under', | |
'within', | |
'along', | |
'following', | |
'across', | |
'behind', | |
'beyond', | |
'plus', | |
'except', | |
'but', | |
'up', | |
'out', | |
'around', | |
'down', | |
'off', | |
'above', | |
'near' | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment