error-stack-parser
Advanced tools
Comparing version 1.3.6 to 2.0.0
@@ -0,1 +1,11 @@ | ||
## v2.0.0 | ||
* Update stackframe dependency to v1.x. Stackframes are constructed and accessed differently. | ||
See the [stackframe CHANGELOG](https://github.com/stacktracejs/stackframe/blob/master/CHANGELOG.md#v10x) for details. | ||
## v1.3.6 | ||
* Handle stack frames with no line/column information | ||
## v1.3.4 | ||
* Avoid <anonymous> file names | ||
## v1.3.2 | ||
@@ -2,0 +12,0 @@ * Handle Safari stack entries with no location information |
@@ -20,41 +20,2 @@ (function(root, factory) { | ||
function _map(array, fn, thisArg) { | ||
if (typeof Array.prototype.map === 'function') { | ||
return array.map(fn, thisArg); | ||
} else { | ||
var output = new Array(array.length); | ||
for (var i = 0; i < array.length; i++) { | ||
output[i] = fn.call(thisArg, array[i]); | ||
} | ||
return output; | ||
} | ||
} | ||
function _filter(array, fn, thisArg) { | ||
if (typeof Array.prototype.filter === 'function') { | ||
return array.filter(fn, thisArg); | ||
} else { | ||
var output = []; | ||
for (var i = 0; i < array.length; i++) { | ||
if (fn.call(thisArg, array[i])) { | ||
output.push(array[i]); | ||
} | ||
} | ||
return output; | ||
} | ||
} | ||
function _indexOf(array, target) { | ||
if (typeof Array.prototype.indexOf === 'function') { | ||
return array.indexOf(target); | ||
} else { | ||
for (var i = 0; i < array.length; i++) { | ||
if (array[i] === target) { | ||
return i; | ||
} | ||
} | ||
return -1; | ||
} | ||
} | ||
return { | ||
@@ -92,7 +53,7 @@ /** | ||
parseV8OrIE: function ErrorStackParser$$parseV8OrIE(error) { | ||
var filtered = _filter(error.stack.split('\n'), function(line) { | ||
var filtered = error.stack.split('\n').filter(function(line) { | ||
return !!line.match(CHROME_IE_STACK_REGEXP); | ||
}, this); | ||
return _map(filtered, function(line) { | ||
return filtered.map(function(line) { | ||
if (line.indexOf('(eval ') > -1) { | ||
@@ -105,5 +66,11 @@ // Throw away eval information until we implement stacktrace.js/stackframe#8 | ||
var functionName = tokens.join(' ') || undefined; | ||
var fileName = _indexOf(['eval', '<anonymous>'], locationParts[0]) > -1 ? undefined : locationParts[0]; | ||
var fileName = ['eval', '<anonymous>'].indexOf(locationParts[0]) > -1 ? undefined : locationParts[0]; | ||
return new StackFrame(functionName, undefined, fileName, locationParts[1], locationParts[2], line); | ||
return new StackFrame({ | ||
functionName: functionName, | ||
fileName: fileName, | ||
lineNumber: locationParts[1], | ||
columnNumber: locationParts[2], | ||
source: line | ||
}); | ||
}, this); | ||
@@ -113,7 +80,7 @@ }, | ||
parseFFOrSafari: function ErrorStackParser$$parseFFOrSafari(error) { | ||
var filtered = _filter(error.stack.split('\n'), function(line) { | ||
var filtered = error.stack.split('\n').filter(function(line) { | ||
return !line.match(SAFARI_NATIVE_CODE_REGEXP); | ||
}, this); | ||
return _map(filtered, function(line) { | ||
return filtered.map(function(line) { | ||
// Throw away eval information until we implement stacktrace.js/stackframe#8 | ||
@@ -126,3 +93,5 @@ if (line.indexOf(' > eval') > -1) { | ||
// Safari eval frames only have function names and nothing else | ||
return new StackFrame(line); | ||
return new StackFrame({ | ||
functionName: line | ||
}); | ||
} else { | ||
@@ -132,8 +101,10 @@ var tokens = line.split('@'); | ||
var functionName = tokens.join('@') || undefined; | ||
return new StackFrame(functionName, | ||
undefined, | ||
locationParts[0], | ||
locationParts[1], | ||
locationParts[2], | ||
line); | ||
return new StackFrame({ | ||
functionName: functionName, | ||
fileName: locationParts[0], | ||
lineNumber: locationParts[1], | ||
columnNumber: locationParts[2], | ||
source: line | ||
}); | ||
} | ||
@@ -162,3 +133,7 @@ }, this); | ||
if (match) { | ||
result.push(new StackFrame(undefined, undefined, match[2], match[1], undefined, lines[i])); | ||
result.push(new StackFrame({ | ||
fileName: match[2], | ||
lineNumber: match[1], | ||
source: lines[i] | ||
})); | ||
} | ||
@@ -179,10 +154,8 @@ } | ||
result.push( | ||
new StackFrame( | ||
match[3] || undefined, | ||
undefined, | ||
match[2], | ||
match[1], | ||
undefined, | ||
lines[i] | ||
) | ||
new StackFrame({ | ||
functionName: match[3] || undefined, | ||
fileName: match[2], | ||
lineNumber: match[1], | ||
source: lines[i] | ||
}) | ||
); | ||
@@ -197,7 +170,7 @@ } | ||
parseOpera11: function ErrorStackParser$$parseOpera11(error) { | ||
var filtered = _filter(error.stack.split('\n'), function(line) { | ||
var filtered = error.stack.split('\n').filter(function(line) { | ||
return !!line.match(FIREFOX_SAFARI_STACK_REGEXP) && !line.match(/^Error created at/); | ||
}, this); | ||
return _map(filtered, function(line) { | ||
return filtered.map(function(line) { | ||
var tokens = line.split('@'); | ||
@@ -215,9 +188,11 @@ var locationParts = this.extractLocation(tokens.pop()); | ||
undefined : argsRaw.split(','); | ||
return new StackFrame( | ||
functionName, | ||
args, | ||
locationParts[0], | ||
locationParts[1], | ||
locationParts[2], | ||
line); | ||
return new StackFrame({ | ||
functionName: functionName, | ||
args: args, | ||
fileName: locationParts[0], | ||
lineNumber: locationParts[1], | ||
columnNumber: locationParts[2], | ||
source: line | ||
}); | ||
}, this); | ||
@@ -227,2 +202,1 @@ } | ||
})); | ||
@@ -1,2 +0,2 @@ | ||
!function(e,t){"use strict";"function"==typeof define&&define.amd?define("stackframe",[],t):"object"==typeof exports?module.exports=t():e.StackFrame=t()}(this,function(){"use strict";function e(e){return!isNaN(parseFloat(e))&&isFinite(e)}function t(e,t,r,n,i,o){void 0!==e&&this.setFunctionName(e),void 0!==t&&this.setArgs(t),void 0!==r&&this.setFileName(r),void 0!==n&&this.setLineNumber(n),void 0!==i&&this.setColumnNumber(i),void 0!==o&&this.setSource(o)}return t.prototype={getFunctionName:function(){return this.functionName},setFunctionName:function(e){this.functionName=String(e)},getArgs:function(){return this.args},setArgs:function(e){if("[object Array]"!==Object.prototype.toString.call(e))throw new TypeError("Args must be an Array");this.args=e},getFileName:function(){return this.fileName},setFileName:function(e){this.fileName=String(e)},getLineNumber:function(){return this.lineNumber},setLineNumber:function(t){if(!e(t))throw new TypeError("Line Number must be a Number");this.lineNumber=Number(t)},getColumnNumber:function(){return this.columnNumber},setColumnNumber:function(t){if(!e(t))throw new TypeError("Column Number must be a Number");this.columnNumber=Number(t)},getSource:function(){return this.source},setSource:function(e){this.source=String(e)},toString:function(){var t=this.getFunctionName()||"{anonymous}",r="("+(this.getArgs()||[]).join(",")+")",n=this.getFileName()?"@"+this.getFileName():"",i=e(this.getLineNumber())?":"+this.getLineNumber():"",o=e(this.getColumnNumber())?":"+this.getColumnNumber():"";return t+r+n+i+o}},t}),function(e,t){"use strict";"function"==typeof define&&define.amd?define("error-stack-parser",["stackframe"],t):"object"==typeof exports?module.exports=t(require("stackframe")):e.ErrorStackParser=t(e.StackFrame)}(this,function(e){"use strict";function t(e,t,r){if("function"==typeof Array.prototype.map)return e.map(t,r);for(var n=new Array(e.length),i=0;i<e.length;i++)n[i]=t.call(r,e[i]);return n}function r(e,t,r){if("function"==typeof Array.prototype.filter)return e.filter(t,r);for(var n=[],i=0;i<e.length;i++)t.call(r,e[i])&&n.push(e[i]);return n}function n(e,t){if("function"==typeof Array.prototype.indexOf)return e.indexOf(t);for(var r=0;r<e.length;r++)if(e[r]===t)return r;return-1}var i=/(^|@)\S+\:\d+/,o=/^\s*at .*(\S+\:\d+|\(native\))/m,a=/^(eval@)?(\[native code\])?$/;return{parse:function(e){if("undefined"!=typeof e.stacktrace||"undefined"!=typeof e["opera#sourceloc"])return this.parseOpera(e);if(e.stack&&e.stack.match(o))return this.parseV8OrIE(e);if(e.stack)return this.parseFFOrSafari(e);throw new Error("Cannot parse given Error object")},extractLocation:function(e){if(-1===e.indexOf(":"))return[e];var t=/(.+?)(?:\:(\d+))?(?:\:(\d+))?$/,r=t.exec(e.replace(/[\(\)]/g,""));return[r[1],r[2]||void 0,r[3]||void 0]},parseV8OrIE:function(i){var a=r(i.stack.split("\n"),function(e){return!!e.match(o)},this);return t(a,function(t){t.indexOf("(eval ")>-1&&(t=t.replace(/eval code/g,"eval").replace(/(\(eval at [^\()]*)|(\)\,.*$)/g,""));var r=t.replace(/^\s+/,"").replace(/\(eval code/g,"(").split(/\s+/).slice(1),i=this.extractLocation(r.pop()),o=r.join(" ")||void 0,a=n(["eval","<anonymous>"],i[0])>-1?void 0:i[0];return new e(o,void 0,a,i[1],i[2],t)},this)},parseFFOrSafari:function(n){var i=r(n.stack.split("\n"),function(e){return!e.match(a)},this);return t(i,function(t){if(t.indexOf(" > eval")>-1&&(t=t.replace(/ line (\d+)(?: > eval line \d+)* > eval\:\d+\:\d+/g,":$1")),-1===t.indexOf("@")&&-1===t.indexOf(":"))return new e(t);var r=t.split("@"),n=this.extractLocation(r.pop()),i=r.join("@")||void 0;return new e(i,void 0,n[0],n[1],n[2],t)},this)},parseOpera:function(e){return!e.stacktrace||e.message.indexOf("\n")>-1&&e.message.split("\n").length>e.stacktrace.split("\n").length?this.parseOpera9(e):e.stack?this.parseOpera11(e):this.parseOpera10(e)},parseOpera9:function(t){for(var r=/Line (\d+).*script (?:in )?(\S+)/i,n=t.message.split("\n"),i=[],o=2,a=n.length;a>o;o+=2){var s=r.exec(n[o]);s&&i.push(new e(void 0,void 0,s[2],s[1],void 0,n[o]))}return i},parseOpera10:function(t){for(var r=/Line (\d+).*script (?:in )?(\S+)(?:: In function (\S+))?$/i,n=t.stacktrace.split("\n"),i=[],o=0,a=n.length;a>o;o+=2){var s=r.exec(n[o]);s&&i.push(new e(s[3]||void 0,void 0,s[2],s[1],void 0,n[o]))}return i},parseOpera11:function(n){var o=r(n.stack.split("\n"),function(e){return!!e.match(i)&&!e.match(/^Error created at/)},this);return t(o,function(t){var r,n=t.split("@"),i=this.extractLocation(n.pop()),o=n.shift()||"",a=o.replace(/<anonymous function(: (\w+))?>/,"$2").replace(/\([^\)]*\)/g,"")||void 0;o.match(/\(([^\)]*)\)/)&&(r=o.replace(/^[^\(]+\(([^\)]*)\)$/,"$1"));var s=void 0===r||"[arguments not available]"===r?void 0:r.split(",");return new e(a,s,i[0],i[1],i[2],t)},this)}}}); | ||
!function(e,t){"use strict";"function"==typeof define&&define.amd?define("stackframe",[],t):"object"==typeof exports?module.exports=t():e.StackFrame=t()}(this,function(){"use strict";function e(e){return!isNaN(parseFloat(e))&&isFinite(e)}function t(e){return e[0].toUpperCase()+e.substring(1)}function r(e){return function(){return this[e]}}function n(e){if(e instanceof Object)for(var r=i.concat(a.concat(o.concat(s))),n=0;n<r.length;n++)e.hasOwnProperty(r[n])&&void 0!==e[r[n]]&&this["set"+t(r[n])](e[r[n]])}var i=["isConstructor","isEval","isNative","isToplevel"],a=["columnNumber","lineNumber"],o=["fileName","functionName","source"],s=["args"];n.prototype={getArgs:function(){return this.args},setArgs:function(e){if("[object Array]"!==Object.prototype.toString.call(e))throw new TypeError("Args must be an Array");this.args=e},getEvalOrigin:function(){return this.evalOrigin},setEvalOrigin:function(e){if(e instanceof n)this.evalOrigin=e;else{if(!(e instanceof Object))throw new TypeError("Eval Origin must be an Object or StackFrame");this.evalOrigin=new n(e)}},toString:function(){var t=this.getFunctionName()||"{anonymous}",r="("+(this.getArgs()||[]).join(",")+")",n=this.getFileName()?"@"+this.getFileName():"",i=e(this.getLineNumber())?":"+this.getLineNumber():"",a=e(this.getColumnNumber())?":"+this.getColumnNumber():"";return t+r+n+i+a}};for(var c=0;c<i.length;c++)n.prototype["get"+t(i[c])]=r(i[c]),n.prototype["set"+t(i[c])]=function(e){return function(t){this[e]=Boolean(t)}}(i[c]);for(var u=0;u<a.length;u++)n.prototype["get"+t(a[u])]=r(a[u]),n.prototype["set"+t(a[u])]=function(t){return function(r){if(!e(r))throw new TypeError(t+" must be a Number");this[t]=Number(r)}}(a[u]);for(var f=0;f<o.length;f++)n.prototype["get"+t(o[f])]=r(o[f]),n.prototype["set"+t(o[f])]=function(e){return function(t){this[e]=String(t)}}(o[f]);return n}),function(e,t){"use strict";"function"==typeof define&&define.amd?define("error-stack-parser",["stackframe"],t):"object"==typeof exports?module.exports=t(require("stackframe")):e.ErrorStackParser=t(e.StackFrame)}(this,function(e){"use strict";var t=/(^|@)\S+\:\d+/,r=/^\s*at .*(\S+\:\d+|\(native\))/m,n=/^(eval@)?(\[native code\])?$/;return{parse:function(e){if("undefined"!=typeof e.stacktrace||"undefined"!=typeof e["opera#sourceloc"])return this.parseOpera(e);if(e.stack&&e.stack.match(r))return this.parseV8OrIE(e);if(e.stack)return this.parseFFOrSafari(e);throw new Error("Cannot parse given Error object")},extractLocation:function(e){if(e.indexOf(":")===-1)return[e];var t=/(.+?)(?:\:(\d+))?(?:\:(\d+))?$/,r=t.exec(e.replace(/[\(\)]/g,""));return[r[1],r[2]||void 0,r[3]||void 0]},parseV8OrIE:function(t){var n=t.stack.split("\n").filter(function(e){return!!e.match(r)},this);return n.map(function(t){t.indexOf("(eval ")>-1&&(t=t.replace(/eval code/g,"eval").replace(/(\(eval at [^\()]*)|(\)\,.*$)/g,""));var r=t.replace(/^\s+/,"").replace(/\(eval code/g,"(").split(/\s+/).slice(1),n=this.extractLocation(r.pop()),i=r.join(" ")||void 0,a=["eval","<anonymous>"].indexOf(n[0])>-1?void 0:n[0];return new e({functionName:i,fileName:a,lineNumber:n[1],columnNumber:n[2],source:t})},this)},parseFFOrSafari:function(t){var r=t.stack.split("\n").filter(function(e){return!e.match(n)},this);return r.map(function(t){if(t.indexOf(" > eval")>-1&&(t=t.replace(/ line (\d+)(?: > eval line \d+)* > eval\:\d+\:\d+/g,":$1")),t.indexOf("@")===-1&&t.indexOf(":")===-1)return new e({functionName:t});var r=t.split("@"),n=this.extractLocation(r.pop()),i=r.join("@")||void 0;return new e({functionName:i,fileName:n[0],lineNumber:n[1],columnNumber:n[2],source:t})},this)},parseOpera:function(e){return!e.stacktrace||e.message.indexOf("\n")>-1&&e.message.split("\n").length>e.stacktrace.split("\n").length?this.parseOpera9(e):e.stack?this.parseOpera11(e):this.parseOpera10(e)},parseOpera9:function(t){for(var r=/Line (\d+).*script (?:in )?(\S+)/i,n=t.message.split("\n"),i=[],a=2,o=n.length;a<o;a+=2){var s=r.exec(n[a]);s&&i.push(new e({fileName:s[2],lineNumber:s[1],source:n[a]}))}return i},parseOpera10:function(t){for(var r=/Line (\d+).*script (?:in )?(\S+)(?:: In function (\S+))?$/i,n=t.stacktrace.split("\n"),i=[],a=0,o=n.length;a<o;a+=2){var s=r.exec(n[a]);s&&i.push(new e({functionName:s[3]||void 0,fileName:s[2],lineNumber:s[1],source:n[a]}))}return i},parseOpera11:function(r){var n=r.stack.split("\n").filter(function(e){return!!e.match(t)&&!e.match(/^Error created at/)},this);return n.map(function(t){var r,n=t.split("@"),i=this.extractLocation(n.pop()),a=n.shift()||"",o=a.replace(/<anonymous function(: (\w+))?>/,"$2").replace(/\([^\)]*\)/g,"")||void 0;a.match(/\(([^\)]*)\)/)&&(r=a.replace(/^[^\(]+\(([^\)]*)\)$/,"$1"));var s=void 0===r||"[arguments not available]"===r?void 0:r.split(",");return new e({functionName:o,args:s,fileName:i[0],lineNumber:i[1],columnNumber:i[2],source:t})},this)}}}); | ||
//# sourceMappingURL=error-stack-parser.min.js.map |
@@ -20,41 +20,2 @@ (function(root, factory) { | ||
function _map(array, fn, thisArg) { | ||
if (typeof Array.prototype.map === 'function') { | ||
return array.map(fn, thisArg); | ||
} else { | ||
var output = new Array(array.length); | ||
for (var i = 0; i < array.length; i++) { | ||
output[i] = fn.call(thisArg, array[i]); | ||
} | ||
return output; | ||
} | ||
} | ||
function _filter(array, fn, thisArg) { | ||
if (typeof Array.prototype.filter === 'function') { | ||
return array.filter(fn, thisArg); | ||
} else { | ||
var output = []; | ||
for (var i = 0; i < array.length; i++) { | ||
if (fn.call(thisArg, array[i])) { | ||
output.push(array[i]); | ||
} | ||
} | ||
return output; | ||
} | ||
} | ||
function _indexOf(array, target) { | ||
if (typeof Array.prototype.indexOf === 'function') { | ||
return array.indexOf(target); | ||
} else { | ||
for (var i = 0; i < array.length; i++) { | ||
if (array[i] === target) { | ||
return i; | ||
} | ||
} | ||
return -1; | ||
} | ||
} | ||
return { | ||
@@ -92,7 +53,7 @@ /** | ||
parseV8OrIE: function ErrorStackParser$$parseV8OrIE(error) { | ||
var filtered = _filter(error.stack.split('\n'), function(line) { | ||
var filtered = error.stack.split('\n').filter(function(line) { | ||
return !!line.match(CHROME_IE_STACK_REGEXP); | ||
}, this); | ||
return _map(filtered, function(line) { | ||
return filtered.map(function(line) { | ||
if (line.indexOf('(eval ') > -1) { | ||
@@ -105,5 +66,11 @@ // Throw away eval information until we implement stacktrace.js/stackframe#8 | ||
var functionName = tokens.join(' ') || undefined; | ||
var fileName = _indexOf(['eval', '<anonymous>'], locationParts[0]) > -1 ? undefined : locationParts[0]; | ||
var fileName = ['eval', '<anonymous>'].indexOf(locationParts[0]) > -1 ? undefined : locationParts[0]; | ||
return new StackFrame(functionName, undefined, fileName, locationParts[1], locationParts[2], line); | ||
return new StackFrame({ | ||
functionName: functionName, | ||
fileName: fileName, | ||
lineNumber: locationParts[1], | ||
columnNumber: locationParts[2], | ||
source: line | ||
}); | ||
}, this); | ||
@@ -113,7 +80,7 @@ }, | ||
parseFFOrSafari: function ErrorStackParser$$parseFFOrSafari(error) { | ||
var filtered = _filter(error.stack.split('\n'), function(line) { | ||
var filtered = error.stack.split('\n').filter(function(line) { | ||
return !line.match(SAFARI_NATIVE_CODE_REGEXP); | ||
}, this); | ||
return _map(filtered, function(line) { | ||
return filtered.map(function(line) { | ||
// Throw away eval information until we implement stacktrace.js/stackframe#8 | ||
@@ -126,3 +93,5 @@ if (line.indexOf(' > eval') > -1) { | ||
// Safari eval frames only have function names and nothing else | ||
return new StackFrame(line); | ||
return new StackFrame({ | ||
functionName: line | ||
}); | ||
} else { | ||
@@ -132,8 +101,10 @@ var tokens = line.split('@'); | ||
var functionName = tokens.join('@') || undefined; | ||
return new StackFrame(functionName, | ||
undefined, | ||
locationParts[0], | ||
locationParts[1], | ||
locationParts[2], | ||
line); | ||
return new StackFrame({ | ||
functionName: functionName, | ||
fileName: locationParts[0], | ||
lineNumber: locationParts[1], | ||
columnNumber: locationParts[2], | ||
source: line | ||
}); | ||
} | ||
@@ -162,3 +133,7 @@ }, this); | ||
if (match) { | ||
result.push(new StackFrame(undefined, undefined, match[2], match[1], undefined, lines[i])); | ||
result.push(new StackFrame({ | ||
fileName: match[2], | ||
lineNumber: match[1], | ||
source: lines[i] | ||
})); | ||
} | ||
@@ -179,10 +154,8 @@ } | ||
result.push( | ||
new StackFrame( | ||
match[3] || undefined, | ||
undefined, | ||
match[2], | ||
match[1], | ||
undefined, | ||
lines[i] | ||
) | ||
new StackFrame({ | ||
functionName: match[3] || undefined, | ||
fileName: match[2], | ||
lineNumber: match[1], | ||
source: lines[i] | ||
}) | ||
); | ||
@@ -197,7 +170,7 @@ } | ||
parseOpera11: function ErrorStackParser$$parseOpera11(error) { | ||
var filtered = _filter(error.stack.split('\n'), function(line) { | ||
var filtered = error.stack.split('\n').filter(function(line) { | ||
return !!line.match(FIREFOX_SAFARI_STACK_REGEXP) && !line.match(/^Error created at/); | ||
}, this); | ||
return _map(filtered, function(line) { | ||
return filtered.map(function(line) { | ||
var tokens = line.split('@'); | ||
@@ -215,9 +188,11 @@ var locationParts = this.extractLocation(tokens.pop()); | ||
undefined : argsRaw.split(','); | ||
return new StackFrame( | ||
functionName, | ||
args, | ||
locationParts[0], | ||
locationParts[1], | ||
locationParts[2], | ||
line); | ||
return new StackFrame({ | ||
functionName: functionName, | ||
args: args, | ||
fileName: locationParts[0], | ||
lineNumber: locationParts[1], | ||
columnNumber: locationParts[2], | ||
source: line | ||
}); | ||
}, this); | ||
@@ -227,2 +202,1 @@ } | ||
})); | ||
@@ -9,3 +9,3 @@ { | ||
], | ||
"version": "1.3.6", | ||
"version": "2.0.0", | ||
"license": "Unlicense", | ||
@@ -20,3 +20,3 @@ "keywords": [ | ||
"dependencies": { | ||
"stackframe": "^0.3.1" | ||
"stackframe": "^1.0.2" | ||
}, | ||
@@ -23,0 +23,0 @@ "repository": { |
@@ -19,7 +19,7 @@ error-stack-parser.js - Extract meaning from JS Errors | ||
```js | ||
ErrorStackParser.parse(new Error('boom')); | ||
ErrorStackParser.parse(new Error('BOOM')); | ||
=> [ | ||
StackFrame('funky1', [], 'path/to/file.js', 35, 79), | ||
StackFrame('filter', undefined, 'https://cdn.somewherefast.com/utils.min.js', 1, 832), | ||
StackFrame({functionName: 'foo', args: [], fileName: 'path/to/file.js', lineNumber: 35, columnNumber: 79, isNative: false, isEval: false}), | ||
StackFrame({functionName: 'Bar', fileName: 'https://cdn.somewherefast.com/utils.min.js', lineNumber: 1, columnNumber: 832, isNative: false, isEval: false, isConstructor: true}), | ||
StackFrame(... and so on ...) | ||
@@ -26,0 +26,0 @@ ] |
Sorry, the diff of this file is not supported yet
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
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
0
45050
8
358
+ Addedstackframe@1.3.4(transitive)
- Removedstackframe@0.3.1(transitive)
Updatedstackframe@^1.0.2