const normalize = (value: string) => value.trim().toLowerCase();

export const CacheKeys = {
  countries: 'locations:countries:uploaded',
  states: (country: string) => `locations:states:uploaded:${normalize(country)}`,
  mapUrl: (country: string, state: string) => `map-url:${normalize(country)}:${normalize(state)}`,
};
