a35f5ee2d9
* implement wellness settings fixes #1192 Adds - grayscale mode (as well as separate grayscale/dark grayscale themes) - disable follower/boost/fav counts (follower counts capped at 10) - disable unread notification count (red dot) * fix lint * fix crawler
4 lines
116 B
JavaScript
4 lines
116 B
JavaScript
export function safeParse (str) {
|
|
return !str ? undefined : (str === 'undefined' ? undefined : JSON.parse(str))
|
|
}
|