summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/title/lib/lower-case.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/ImportarDesdeURL/node_modules/title/lib/lower-case.js')
-rw-r--r--bin/wiki/ImportarDesdeURL/node_modules/title/lib/lower-case.js93
1 files changed, 93 insertions, 0 deletions
diff --git a/bin/wiki/ImportarDesdeURL/node_modules/title/lib/lower-case.js b/bin/wiki/ImportarDesdeURL/node_modules/title/lib/lower-case.js
new file mode 100644
index 00000000..3ad022ef
--- /dev/null
+++ b/bin/wiki/ImportarDesdeURL/node_modules/title/lib/lower-case.js
@@ -0,0 +1,93 @@
+const conjunctions = [
+ 'for',
+ 'and',
+ 'nor',
+ 'but',
+ 'or',
+ 'yet',
+ 'so'
+]
+
+const articles = [
+ 'a',
+ 'an',
+ 'the'
+]
+
+const prepositions = [
+ 'aboard',
+ 'about',
+ 'above',
+ 'across',
+ 'after',
+ 'against',
+ 'along',
+ 'amid',
+ 'among',
+ 'anti',
+ 'around',
+ 'as',
+ 'at',
+ 'before',
+ 'behind',
+ 'below',
+ 'beneath',
+ 'beside',
+ 'besides',
+ 'between',
+ 'beyond',
+ 'but',
+ 'by',
+ 'concerning',
+ 'considering',
+ 'despite',
+ 'down',
+ 'during',
+ 'except',
+ 'excepting',
+ 'excluding',
+ 'following',
+ 'for',
+ 'from',
+ 'in',
+ 'inside',
+ 'into',
+ 'like',
+ 'minus',
+ 'near',
+ 'of',
+ 'off',
+ 'on',
+ 'onto',
+ 'opposite',
+ 'over',
+ 'past',
+ 'per',
+ 'plus',
+ 'regarding',
+ 'round',
+ 'save',
+ 'since',
+ 'than',
+ 'through',
+ 'to',
+ 'toward',
+ 'towards',
+ 'under',
+ 'underneath',
+ 'unlike',
+ 'until',
+ 'up',
+ 'upon',
+ 'versus',
+ 'via',
+ 'with',
+ 'within',
+ 'without'
+]
+
+module.exports = new Set([
+ ...conjunctions,
+ ...articles,
+ ...prepositions
+])