UNPKG

nhb-toolbox

Version:

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

132 lines (131 loc) 1.86 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LOWERCASE = void 0; /** List of conjunctions, prepositions, auxiliary verbs and articles in lowercase as array of strings */ exports.LOWERCASE = 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', ]);