* Retrieve the raw value from sessionStorage or the cookie depending on what the browser is supporting. * * @returns {*} * @private
()
| 6274 | * @private |
| 6275 | */ |
| 6276 | _getValueFromPersistentStorage() { |
| 6277 | if (this.settings.saveValueToSessionStorage) { |
| 6278 | return sessionStorage.getItem(this.rawValueStorageName); |
| 6279 | } |
| 6280 | |
| 6281 | AutoNumericHelper.warning('`_getValueFromPersistentStorage()` is called but `settings.saveValueToSessionStorage` is false. There must be an error that needs fixing.', this.settings.showWarnings); |
| 6282 | |
| 6283 | return null; |
| 6284 | } |
| 6285 | |
| 6286 | /** |
| 6287 | * Remove the raw value data from sessionStorage or the cookie depending on what the browser is supporting. |
no test coverage detected