{"version":3,"file":"indefinite-article-9i6VzGLx.js","sources":["../../node_modules/indefinite-article/indefinite-article.js"],"sourcesContent":["/*\n * indefinite-article.js v1.0.0, 12-18-2011\n *\n * @author: Rodrigo Neri (@rigoneri)\n *\n * (The MIT License)\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n */\n\nvar indefiniteArticle = function(phrase) {\n var i, word;\n\n // Getting the first word\n var match = /\\w+/.exec(phrase);\n if (match)\n word = match[0];\n else\n return \"an\";\n\n var l_word = word.toLowerCase();\n // Specific start of words that should be preceeded by 'an'\n var alt_cases = [\"honest\", \"hour\", \"hono\"];\n for (i in alt_cases) {\n if (l_word.indexOf(alt_cases[i]) == 0)\n return \"an\";\n }\n\n // Single letter word which should be preceeded by 'an'\n if (l_word.length == 1) {\n if (\"aedhilmnorsx\".indexOf(l_word) >= 0)\n return \"an\";\n else\n return \"a\";\n }\n\n // Capital words which should likely be preceeded by 'an'\n if (word.match(/(?!FJO|[HLMNS]Y.|RY[EO]|SQU|(F[LR]?|[HL]|MN?|N|RH?|S[CHKLMNPTVW]?|X(YL)?)[AEIOU])[FHLMNRSX][A-Z]/)) {\n return \"an\";\n }\n\n // Special cases where a word that begins with a vowel should be preceeded by 'a'\n var regexes = [/^e[uw]/, /^onc?e\\b/, /^uni([^nmd]|mo)/, /^u[bcfhjkqrst][aeiou]/];\n for (i = 0; i < regexes.length; i++) {\n if (l_word.match(regexes[i]))\n return \"a\"\n }\n\n // Special capital words (UK, UN)\n if (word.match(/^U[NK][AIEO]/)) {\n return \"a\";\n }\n else if (word == word.toUpperCase()) {\n if (\"aedhilmnorsx\".indexOf(l_word[0]) >= 0)\n return \"an\";\n else\n return \"a\";\n }\n\n // Basic method of words that begin with a vowel being preceeded by 'an'\n if (\"aeiou\".indexOf(l_word[0]) >= 0)\n return \"an\";\n\n // Instances where y follwed by specific letters is preceeded by 'an'\n if (l_word.match(/^y(b[lor]|cl[ea]|fere|gg|p[ios]|rou|tt)/))\n return \"an\";\n\n return \"a\";\n};\n\nif ((typeof module !== 'undefined') && (typeof module.exports !== 'undefined')) {\n module.exports = indefiniteArticle;\n} else {\n window.indefiniteArticle = indefiniteArticle;\n}\n"],"names":["indefiniteArticle","phrase","i","word","match","l_word","alt_cases","regexes","module"],"mappings":"kZA0BA,IAAIA,EAAoB,SAASC,EAAQ,CACrC,IAAIC,EAAGC,EAGHC,EAAQ,MAAM,KAAKH,CAAM,EAC7B,GAAIG,EACAD,EAAOC,EAAM,CAAC,MAEd,OAAO,KAEX,IAAIC,EAASF,EAAK,YAAa,EAE3BG,EAAY,CAAC,SAAU,OAAQ,MAAM,EACzC,IAAKJ,KAAKI,EACN,GAAID,EAAO,QAAQC,EAAUJ,CAAC,CAAC,GAAK,EAChC,MAAO,KAIf,GAAIG,EAAO,QAAU,EACjB,MAAI,eAAe,QAAQA,CAAM,GAAK,EAC3B,KAEA,IAIf,GAAIF,EAAK,MAAM,kGAAkG,EAC7G,MAAO,KAIX,IAAII,EAAU,CAAC,SAAU,WAAY,kBAAmB,uBAAuB,EAC/E,IAAKL,EAAI,EAAGA,EAAIK,EAAQ,OAAQL,IAC5B,GAAIG,EAAO,MAAME,EAAQL,CAAC,CAAC,EACvB,MAAO,IAIf,OAAIC,EAAK,MAAM,cAAc,EAClB,IAEFA,GAAQA,EAAK,cACd,eAAe,QAAQE,EAAO,CAAC,CAAC,GAAK,EAC9B,KAEA,IAIX,QAAQ,QAAQA,EAAO,CAAC,CAAC,GAAK,GAI9BA,EAAO,MAAM,yCAAyC,EAC/C,KAEJ,GACV,EAGGG,EAAA,QAAiBR","x_google_ignoreList":[0]}