export function getLowerCase(value: string): string { if (value) { return value.toLowerCase(); } return value; }