Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
column(name: string, _table: string, _schema?: string) {
return name === "id" ? "rowId" : inflections.defaultUtils.camelCase(name);
},
};
enumName(value: string) {
return inflections.defaultUtils.constantCase(
inflections.defaultInflection.enumName(value)
);
},
};