(parent, props)
| 929 | } |
| 930 | |
| 931 | function extend(parent, props) { |
| 932 | return Object.assign(Object.create(parent.prototype), props); |
| 933 | } |
| 934 | |
| 935 | function isAttached(el) { |
| 936 | return el === window || document.contains(el); |
no outgoing calls
no test coverage detected
searching dependent graphs…