1/** Used to detect strings that need a more robust regexp to match words. */ 2var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/; 3 4/** 5 * Checks if `string` contains a word composed of Unicode symbols. 6 * 7 * @private 8 * @param {string} string The string to inspect. 9 * @returns {boolean} Returns `true` if a word is found, else `false`. 10 */ 11function hasUnicodeWord(string) { 12 return reHasUnicodeWord.test(string); 13} 14 15module.exports = hasUnicodeWord; 16