feat: add plugins settings i18n + typing

This commit is contained in:
Mohamed Marrouchi
2024-10-19 13:56:09 +01:00
parent 8d846186cc
commit 92bb4978c3
20 changed files with 107 additions and 67 deletions

View File

@@ -9,3 +9,7 @@
export const isEmpty = (value: string): boolean => {
return value === undefined || value === null || value === '';
};
export const hyphenToUnderscore = (str: string) => {
return str.replaceAll('-', '_');
};