chore: tweak store imports

This commit is contained in:
Steven
2024-04-07 21:23:14 +08:00
parent 5264dc9d8a
commit b7484363dc
9 changed files with 20 additions and 15 deletions

View File

@@ -1,9 +1,3 @@
import { isNull, isUndefined } from "lodash-es";
export const isNullorUndefined = (value: any) => {
return isNull(value) || isUndefined(value);
};
export const getFaviconWithGoogleS2 = (url: string) => {
try {
const urlObject = new URL(url);