(token)
| 68 | } |
| 69 | |
| 70 | function getListData(token) { |
| 71 | if (!token.text && token.type === 'list') { |
| 72 | token.text = token.raw; |
| 73 | } |
| 74 | return token.text; |
| 75 | } |
| 76 | |
| 77 | function saveData(maxAge, expireKey, indexKey) { |
| 78 | localStorage.setItem(expireKey, Date.now() + maxAge); |
no outgoing calls
no test coverage detected
searching dependent graphs…