()
| 628 | try { |
| 629 | return window.sessionStorage.getItem(VOTE_SESSION_KEY) || ""; |
| 630 | } catch { |
| 631 | return ""; |
| 632 | } |
| 633 | } |
| 634 | |
| 635 | function clearVoteSessionToken() { |
| 636 | try { |
| 637 | window.sessionStorage.removeItem(VOTE_SESSION_KEY); |
| 638 | } catch { |
| 639 | // Storage may be unavailable in hardened browser modes. |
no outgoing calls
no test coverage detected