Update getItemListsController.ts
All checks were successful
Build / build (pull_request) Successful in 1m17s
All checks were successful
Build / build (pull_request) Successful in 1m17s
This commit is contained in:
parent
92bcd2bd04
commit
c394b4da31
@ -70,7 +70,7 @@ const relicQualitySuffixes: Record<TRelicQuality, string> = {
|
||||
};
|
||||
|
||||
const toTitleCase = (str: string): string => {
|
||||
return str.replace(/[^\s-]+/g, word => word.charAt(0).toUpperCase() + word.substr(1).toLowerCase());
|
||||
return str.replace(/[^\s-]+/g, word => word.charAt(0).toUpperCase() + word.substring(1).toLowerCase());
|
||||
};
|
||||
|
||||
const getItemListsController: RequestHandler = (req, response) => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user