MCPcopy
hub / github.com/autoNumeric/autoNumeric / _saveValueToPersistentStorage

Method _saveValueToPersistentStorage

src/AutoNumeric.js:6264–6268  ·  view source on GitHub ↗

* Save the raw Value into sessionStorage or a cookie depending on what the browser is supporting. * @private

()

Source from the content-addressed store, hash-verified

6262 * @private
6263 */
6264 _saveValueToPersistentStorage() {
6265 if (this.settings.saveValueToSessionStorage) {
6266 sessionStorage.setItem(this.rawValueStorageName, this.rawValue);
6267 }
6268 }
6269
6270 /**
6271 * Retrieve the raw value from sessionStorage or the cookie depending on what the browser is supporting.

Callers 3

setMethod · 0.95
_onKeyupMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected