|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
491 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 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;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.