MCPcopy
hub / github.com/autoNumeric/autoNumeric / _getValueFromPersistentStorage

Method _getValueFromPersistentStorage

src/AutoNumeric.js:6276–6284  ·  view source on GitHub ↗

* Retrieve the raw value from sessionStorage or the cookie depending on what the browser is supporting. * * @returns {*} * @private

()

Source from the content-addressed store, hash-verified

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.

Callers 1

Calls 1

warningMethod · 0.80

Tested by

no test coverage detected