()
| 134 | const RESUMABLE_DRAFTS_KEY = 'filr_resumable_drafts_v1'; |
| 135 | |
| 136 | function getCurrentUserKey() { |
| 137 | // Try a few globals; fall back to browser profile |
| 138 | const u = |
| 139 | (window.currentUser && String(window.currentUser)) || |
| 140 | (window.appUser && String(window.appUser)) || |
| 141 | (window.username && String(window.username)) || |
| 142 | ''; |
| 143 | return u || 'anon'; |
| 144 | } |
| 145 | |
| 146 | function loadResumableDraftsAll() { |
| 147 | try { |
no outgoing calls
no test coverage detected