* _backupKey * Generate a key used to store/retrieve backup edits. * It uses `window.location.origin` avoid conflicts with other instances of Rapid. * @return {string} The key used to store/retrieve backup edits in localStorage
()
| 1255 | * @return {string} The key used to store/retrieve backup edits in localStorage |
| 1256 | */ |
| 1257 | _backupKey() { |
| 1258 | return 'Rapid_' + window.location.origin + '_saved_history'; |
| 1259 | } |
| 1260 | |
| 1261 | |
| 1262 | /** |
no outgoing calls
no test coverage detected