UNPKG

nhb-toolbox

Version:

A versatile collection of smart, efficient, and reusable utility functions and classes for everyday development needs.

129 lines (128 loc) 1.78 kB
/** List of conjunctions, prepositions, auxiliary verbs and articles in lowercase as array of strings */ export const LOWERCASE = /* @__PURE__ */ Object.freeze([ // Conjunctions 'and', 'but', 'or', 'nor', 'for', 'so', 'yet', 'after', 'although', 'as', 'because', 'before', 'even', 'if', 'once', 'since', 'than', 'that', 'though', 'unless', 'until', 'when', 'whenever', 'where', 'whereas', 'wherever', 'whether', 'while', // Prepositions 'about', 'above', 'across', 'after', 'against', 'along', 'among', 'around', 'as', 'at', 'before', 'behind', 'below', 'beneath', 'beside', 'between', 'beyond', 'but', 'by', 'concerning', 'considering', 'despite', 'down', 'during', 'except', 'following', 'for', 'from', 'in', 'inside', 'into', 'like', 'minus', 'near', 'of', 'off', 'on', 'onto', 'opposite', 'out', 'outside', 'over', 'past', 'per', 'plus', 'regarding', 'round', 'save', 'since', 'than', 'through', 'throughout', 'till', 'to', 'toward', 'towards', 'under', 'underneath', 'unlike', 'until', 'up', 'upon', 'versus', 'via', 'with', 'within', 'without', // Articles 'a', 'an', 'the', // Auxiliary Verbs 'am', 'are', 'be', 'been', 'being', 'can', 'could', 'do', 'does', 'did', 'had', 'has', 'have', 'is', 'may', 'might', 'must', 'shall', 'should', 'was', 'were', 'will', 'would', ]);