Skip to content

Commit

Permalink
fix: seeking for async callback on advices may be broken on umd packages
Browse files Browse the repository at this point in the history
  • Loading branch information
k1r0s committed Dec 7, 2017
1 parent 6cc8eab commit 4600caf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/CallStackIterator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,6 @@ export class CallStackIterator {
.replace(/(["'])(?:(?=(\\?))\2.)*?\1/g, "")
// Remove comments
.replace(/(\/\*([^*]|[\r\n]|(\*+([^*\/]|[\r\n])))*\*+\/)|(\/\/.*)/g, "")
.match(/[^a-zA-Z$]this\.next[\W]/g)
.match(/[a-zA-Z$]\.next[\W]/g)
}
}

0 comments on commit 4600caf

Please sign in to comment.