()
| 926 | * Moves a component back to its original location in the DOM. |
| 927 | */ |
| 928 | const removeViewFromDom = () => { |
| 929 | const { delegate } = getDelegate(); |
| 930 | if (delegate && ref.el !== undefined) { |
| 931 | delegate.removeViewFromDom(ref.el.parentElement, ref.el); |
| 932 | } |
| 933 | }; |
| 934 | |
| 935 | return { |
| 936 | attachViewToDom, |
nothing calls this directly
no test coverage detected