Pages
Standard Library
Search
Entities
Storage.Local
Functions
Clears the local storage.
Storage.Local.clear()
Delete the value with the given key.
Storage.Local.delete("key")
Gets the value of given key.
Storage.Local.get("key")
Returns the keys in the local storage.
Storage.Local.keys() == []
Sets the given key to the given value.
Storage.Local.set("key", "value")
Returns the number of items in the local storage.
Storage.Local.size() == 0