Clears all items from the storage.
This method removes all key-value pairs from the storage, effectively resetting it to an empty state.
Whether debugging is enabled.
false
Retrieves data from the storage and optionally executes a callback with the retrieved data.
Optional
callback: ((data) => void)An optional callback function that will be called with the retrieved data.
This method measures the time taken to load the state from IndexedDB and logs it if debugging is enabled.
Retrieves an item from the storage asynchronously.
A promise that resolves to the item retrieved from the storage, or null if the item does not exist.
Key for the storage.
'state'
Stores the provided data in IndexedDB and optionally executes a callback function.
The data to be stored.
Optional
callback: (() => void)An optional callback function to be executed after the data is stored.
Asynchronously sets the provided data in the storage.
The data to be stored.
A promise that resolves when the data has been stored.
This method measures the time taken to store the data and logs it to the console if debugging is enabled.
LocalForage instance for the storage.
Version of the storage.
1
Generated using TypeDoc
Storage class for Editor.