(id, { tab })
| 15 | |
| 16 | addOwnCommands({ |
| 17 | async GetValueStore(id, { tab }) { |
| 18 | const frames = nest(nest(openers, id), tab.id); |
| 19 | const values = frames[0] || (frames[0] = await storage[S_VALUE].getOne(id)); |
| 20 | return values; |
| 21 | }, |
| 22 | /** |
| 23 | * @param {Object} data - key can be an id or a uri |
| 24 | */ |