refactor(nestjs): landed cost

This commit is contained in:
Ahmed Bouhuolia
2025-06-11 14:04:37 +02:00
parent 1130975efd
commit ff93168d72
28 changed files with 622 additions and 417 deletions

View File

@@ -0,0 +1,5 @@
import { camelCase, upperFirst } from 'lodash';
export const sanitizeModelName = (modelName: string) => {
return upperFirst(camelCase(modelName));
}