feat: implement extension's popup and options

This commit is contained in:
Steven
2023-08-08 20:16:14 +08:00
parent b638d9cdf4
commit f886bd7eb8
13 changed files with 344 additions and 91 deletions

View File

@ -0,0 +1,5 @@
import { isNull, isUndefined } from "lodash-es";
export const isNullorUndefined = (value: any) => {
return isNull(value) || isUndefined(value);
};