This commit is contained in:
Claus-Peter Huebner 2023-05-09 01:27:13 +02:00
parent 920b0f6d02
commit b87373947a

View File

@ -18,4 +18,3 @@ export const decimalSeparatorByLanguage = (a: Decimal, language: string): string
export const fullName = (firstName: string, lastName: string): string => {
return [firstName, lastName].filter(Boolean).join(' ')
}