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.
normalized.function
1 parent e3f4e88 commit 3ceadc1Copy full SHA for 3ceadc1
.eslintrc
@@ -14,7 +14,7 @@
14
"dot-notation": [
15
2,
16
{
17
- "allowKeywords": true
+ "allowKeywords": false
18
}
19
],
20
"eqeqeq": [
src/raven.js
@@ -791,7 +791,7 @@ Raven.prototype = {
791
// first we check the global includePaths list.
792
!!this._globalOptions.includePaths.test && !this._globalOptions.includePaths.test(normalized.filename) ||
793
// Now we check for fun, if the function name is Raven or TraceKit
794
- /(Raven|TraceKit)\./.test(normalized.function) ||
+ /(Raven|TraceKit)\./.test(normalized['function']) ||
795
// finally, we do a last ditch effort and check for raven.min.js
796
/raven\.(min\.)?js$/.test(normalized.filename)
797
);
0 commit comments