Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_hasUnicodeWord.js 491B

123456789101112131415
  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. * Checks if `string` contains a word composed of Unicode symbols.
  5. *
  6. * @private
  7. * @param {string} string The string to inspect.
  8. * @returns {boolean} Returns `true` if a word is found, else `false`.
  9. */
  10. function hasUnicodeWord(string) {
  11. return reHasUnicodeWord.test(string);
  12. }
  13. module.exports = hasUnicodeWord;