(element, data)
| 57 | const elementData = new WeakMap(); |
| 58 | |
| 59 | function storeElementInfo(element, data) { |
| 60 | elementData.set(element, data); |
| 61 | } |
| 62 | |
| 63 | function retrieveElementInfo(element) { |
| 64 | return elementData.get(element); |
nothing calls this directly
no outgoing calls
no test coverage detected