Call a create function if key does not yet exist on an object. Returns the found or created object. Example:
async function fetchItem(id, cache) { ... }let data = await ensureKey(cache, id, fetchItem) Copy
async function fetchItem(id, cache) { ... }let data = await ensureKey(cache, id, fetchItem)
Call a create function if key does not yet exist on an object. Returns the found or created object. Example: