(target)
| 21 | const DEFAULT_TARGET = document.body |
| 22 | |
| 23 | function isExclude(target) { |
| 24 | return ( |
| 25 | $(target).is(EXCLUDES) || |
| 26 | $(target).parents(EXCLUDES).length || |
| 27 | $(target).is(DEFAULT_TARGET) |
| 28 | ) |
| 29 | } |
| 30 | |
| 31 | let taskQueue = [] |
| 32 |
no outgoing calls
no test coverage detected