| Current Path : /var/www/html/test/wetty/src/client/ |
| 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;
}
}