Your IP : 216.73.216.40


Current Path : /var/www/html/test/wetty/src/client/
Upload File :
Current File : /var/www/html/test/wetty/src/client/options.ts

import { isUndefined } from 'lodash';

export default function loadOptions(): object {
  const defaultOptions = { fontSize: 14 };
  try {
    return isUndefined(localStorage.options)
      ? defaultOptions
      : JSON.parse(localStorage.options);
  } catch {
    return defaultOptions;
  }
}