time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

_hasUnicodeWord.js (491B)


      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;