Projekt

Obecné

Profil

Stáhnout (491 Bajtů) Statistiky
| Větev: | Revize:
1
/** Used to detect strings that need a more robust regexp to match words. */
2
var 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
 */
11
function hasUnicodeWord(string) {
12
  return reHasUnicodeWord.test(string);
13
}
14

    
15
module.exports = hasUnicodeWord;
(193-193/571)