You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The save-data module should implement object serialization/deserialization (using JSON.parse / JSON.stringify) where necessary - the user should be able to provide and receive JavaScript objects via the saveData object's API.
localStorageSet already uses the object's toString method for serialization, but for non-primitives this becomes [object Object].
The text was updated successfully, but these errors were encountered:
The save-data module should implement object serialization/deserialization (using
JSON.parse
/JSON.stringify
) where necessary - the user should be able to provide and receive JavaScript objects via thesaveData
object's API.localStorageSet
already uses the object'stoString
method for serialization, but for non-primitives this becomes[object Object]
.The text was updated successfully, but these errors were encountered: