(transaction, parent, key)
| 1738 | * @function |
| 1739 | */ |
| 1740 | export const typeMapDelete = (transaction, parent, key) => { |
| 1741 | const c = parent._map.get(key) |
| 1742 | if (c !== undefined) { |
| 1743 | c.delete(transaction) |
| 1744 | } |
| 1745 | } |
| 1746 | |
| 1747 | /** |
| 1748 | * @param {Transaction} transaction |
no test coverage detected
searching dependent graphs…