mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-26 04:28:31 +00:00
- Strict comparisons for style uniformity.
This commit is contained in:
parent
0cc2dd4407
commit
e87cf9eddf
1 changed files with 3 additions and 3 deletions
|
@ -828,13 +828,13 @@ export default class Input extends Module {
|
||||||
const term_lower = term.toLowerCase();
|
const term_lower = term.toLowerCase();
|
||||||
const termPosition = emote_lower.search(term_lower);
|
const termPosition = emote_lower.search(term_lower);
|
||||||
|
|
||||||
if (termPosition == 0)
|
if (termPosition === 0)
|
||||||
return CASE_INSENSITIVE_PREFIX_MATCH;
|
return CASE_INSENSITIVE_PREFIX_MATCH;
|
||||||
|
|
||||||
if (isUpperChar(emote_name.charAt(termPosition)))
|
if (isUpperChar(emote_name.charAt(termPosition)))
|
||||||
return CAPITALIZED_SECTION_MATCH;
|
return CAPITALIZED_SECTION_MATCH;
|
||||||
|
|
||||||
if (termPosition != -1)
|
if (termPosition !== -1)
|
||||||
return SUBSTRING_MATCH;
|
return SUBSTRING_MATCH;
|
||||||
|
|
||||||
return NO_MATCH;
|
return NO_MATCH;
|
||||||
|
@ -1047,7 +1047,7 @@ export default class Input extends Module {
|
||||||
results_usage.push(element);
|
results_usage.push(element);
|
||||||
else if ( match_type >= CASE_INSENSITIVE_PREFIX_MATCH )
|
else if ( match_type >= CASE_INSENSITIVE_PREFIX_MATCH )
|
||||||
results_prefix.push(element);
|
results_prefix.push(element);
|
||||||
else if ( match_type == CAPITALIZED_SECTION_MATCH )
|
else if ( match_type === CAPITALIZED_SECTION_MATCH )
|
||||||
results_capitalized.push(element);
|
results_capitalized.push(element);
|
||||||
else
|
else
|
||||||
results_other.push(element);
|
results_other.push(element);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue