()
| 132 | } |
| 133 | |
| 134 | export const attachToDocument = () => { |
| 135 | const element = document.createElement('div') |
| 136 | document.body.appendChild(element) |
| 137 | return element |
| 138 | } |
| 139 | |
| 140 | export const mapArrayWrapper = (arrayWrapper, mapFunction) => { |
| 141 | const result = [] |
no outgoing calls
no test coverage detected