(key)
| 1289 | // UNTIL https://github.com/endojs/endo/issues/1514 |
| 1290 | // Prefer: const get = key => touchCell(key)?.data?.get(key); |
| 1291 | const get= (key)=>{ |
| 1292 | const cell= touchCell(key); |
| 1293 | return cell&& cell.data&& cell.data.get(key); |
| 1294 | }; |
| 1295 | freeze(get); |
| 1296 | |
| 1297 | /** |
no test coverage detected