(node)
| 371 | }; |
| 372 | |
| 373 | function getParents(node) { |
| 374 | var parent = node.parentNode; |
| 375 | if(parent) return getParents(parent).concat(node); |
| 376 | return [node]; |
| 377 | } |
| 378 | |
| 379 | function collectionToArray(collection) { |
| 380 | var len = collection.length; |
no outgoing calls
no test coverage detected
searching dependent graphs…