fix: misc

This commit is contained in:
Ibrahima G. Coulibaly
2024-06-27 18:55:20 +01:00
parent 1903d316e0
commit dcac733acf
7 changed files with 383 additions and 349 deletions

View File

@@ -5,4 +5,4 @@ export function capitalizeFirstLetter(string: string | undefined) {
export function isNumber(number: any) {
return !isNaN(parseFloat(number)) && isFinite(number);
}
}