(stackFilter, stack)
| 183 | } |
| 184 | |
| 185 | function filterFrames(stackFilter, stack) { |
| 186 | return stack.filter(function(frame) { |
| 187 | return !stackFilter.test(frame); |
| 188 | }); |
| 189 | } |
| 190 | |
| 191 | function filterHandled(t) { |
| 192 | return !t.handler.handled; |
no outgoing calls
no test coverage detected
searching dependent graphs…