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
{{ message }}
This repository was archived by the owner on Mar 16, 2026. It is now read-only.
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 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 thesaveDataobject's API.localStorageSetalready uses the object'stoStringmethod for serialization, but for non-primitives this becomes[object Object].