source: trip-planner-front/node_modules/lodash/_hasUnicodeWord.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 491 bytes
Line 
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;
Note: See TracBrowser for help on using the repository browser.