WorkletSharedStorage: keys() method
Deprecated
Avoid using this feature in new projects. This feature may be a candidate for removal from web standards or browsers.>
The keys() method of the
WorkletSharedStorage interface returns an async iterator, which contains the keys for each item in a WorkletSharedStorage instance.
Syntax
js
keys()
Parameters
None.
Return value
An array of the WorkletSharedStorage's enumerable property keys.
Exceptions
TypeError-
Thrown if the calling site does not have the Shared Storage API included in a successful privacy sandbox enrollment process.
Examples
js
// keys() available inside a shared storage worklet module
const storage = await this.sharedStorage;
async function logKeys() {
for await (const key of storage.keys()) {
console.log(key);
}
}