mirror of
https://github.com/Lissy93/dashy.git
synced 2024-12-26 18:36:36 +03:00
Fixing issues raised by SonarCloud
This commit is contained in:
parent
13775b3f57
commit
3f3ffac63b
@ -11,7 +11,7 @@ import ErrorHandler from '@/utils/ErrorHandler';
|
||||
const getDomainFromUrl = (url) => {
|
||||
if (!url) return '';
|
||||
const urlPattern = /^(?:https?:\/\/)?(?:w{3}\.)?([a-z\d.-]+)\.(?:[a-z.]{2,10})(?:[/\w.-]*)*/;
|
||||
const domainPattern = url.match(urlPattern);
|
||||
const domainPattern = urlPattern.exec(url);
|
||||
return domainPattern ? domainPattern[1] : '';
|
||||
};
|
||||
|
||||
@ -24,7 +24,7 @@ const getDomainFromUrl = (url) => {
|
||||
*/
|
||||
const filterHelper = (compareStr, searchStr) => {
|
||||
if (!compareStr) return false;
|
||||
const process = (input) => input && input.toString().toLowerCase().replace(/[^\w\s]/gi, '');
|
||||
const process = (input) => input?.toString().toLowerCase().replace(/[^\w\s]/gi, '');
|
||||
return process(searchStr).split(/\s/).every(word => process(compareStr).includes(word));
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user