mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
import mapValues from "lodash/mapValues";
|
|
|
|
export const upperCaseValues = (obj: any): any => {
|
|
if (!obj) return undefined;
|
|
return mapValues(obj, (v: string) => v.toUpperCase());
|
|
};
|