We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e75467d commit fdac9deCopy full SHA for fdac9de
src/raven.js
@@ -644,7 +644,7 @@ function joinRegExp(patterns) {
644
// Be mad.
645
var sources = [], i = patterns.length;
646
while (i--) {
647
- if (typeof patterns[i] != "undefined" && patterns[i]) {
+ if (!isUndefined(patterns[i]) && patterns[i]) {
648
sources[i] = isString(patterns[i]) ?
649
// If it's a string, we need to escape it
650
// Taken from: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
0 commit comments