(e)
| 38 | } |
| 39 | |
| 40 | function safeParse(e) { |
| 41 | if (!e) return null; |
| 42 | try { |
| 43 | var t = JSON.parse(e); |
| 44 | if (t) return t; |
| 45 | } catch (e) { |
| 46 | return debug, null; |
| 47 | } |
| 48 | return null; |
| 49 | } |
| 50 | |
| 51 | export function fbBlockFeatures({ |
| 52 | block_seen_chat = true, |
no test coverage detected