stacktracey
Advanced tools
Comparing version 2.0.9 to 2.0.10
{ | ||
"name": "stacktracey", | ||
"version": "2.0.9", | ||
"version": "2.0.10", | ||
"description": "Parses call stacks. Reads sources. Clean & filtered output. Sourcemaps. Node & browsers.", | ||
@@ -5,0 +5,0 @@ "main": "stacktracey", |
@@ -190,3 +190,3 @@ "use strict"; | ||
shouldSkipResolving (loc) { | ||
return loc.sourceFile || (loc.file && loc.file.indexOf ('<') >= 0) // skip things like <anonymous> and stuff that was already fetched | ||
return loc.sourceFile || loc.error || (loc.file && loc.file.indexOf ('<') >= 0) // skip things like <anonymous> and stuff that was already fetched | ||
} | ||
@@ -193,0 +193,0 @@ |
@@ -204,6 +204,6 @@ "use strict"; | ||
StackTracey.prototype.relativePath ('webpack:///~/jquery/dist/jquery.js') | ||
.should.equal ( '~/jquery/dist/jquery.js') | ||
.should.equal ( '~/jquery/dist/jquery.js') | ||
StackTracey.prototype.relativePath ('webpack:/webpack/bootstrap') | ||
.should.equal ( 'webpack/bootstrap') | ||
.should.equal ( 'webpack/bootstrap') | ||
}) | ||
@@ -210,0 +210,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
42017