WorkletSharedStorage: entries() method
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The entries()
method of the
WorkletSharedStorage
interface returns an async iterator. The iterator provides an array of [key, value]
pairs corresponding to the enumerable properties of a WorkletSharedStorage
instance. The order of these pairs is similar to that in a for...in
loop, though a for...in
loop also enumerates properties from the prototype chain.
Syntax
entries()
Parameters
None.
Return value
An array of the WorkletSharedStorage
's enumerable property key-value pairs.
Exceptions
TypeError
-
Thrown if the calling site does not have the Shared Storage API included in a successful privacy sandbox enrollment process.
Examples
// entries() available inside a shared storage worklet module
const storage = await this.sharedStorage;
async function logEntries() {
for await (const [key, value] of storage.entries()) {
console.log({ key, value });
}
}
Specifications
No specification found
No specification data found for api.WorkletSharedStorage.entries
.
Check for problems with this page or contribute a missing spec_url
to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.
Browser compatibility
BCD tables only load in the browser