Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Socket
Sign inDemoInstall

stacktrace-parser

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stacktrace-parser - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

2

lib/stacktrace-parser.js

@@ -12,3 +12,3 @@

var chrome = /^\s*at (?:(?:(?:Anonymous function)?|((?:\[object object\])?\S+(?: \[as \S+\])?)) )?\(?((?:file|http|https):.*?):(\d+)(?::(\d+))?\)?\s*$/i,
gecko = /^(?:\s*(\S*)(?:\((.*?)\))?@)?(\S.*?):(\d+)(?::(\d+))?\s*$/i,
gecko = /^(?:\s*([^@]*)(?:\((.*?)\))?@)?(\S.*?):(\d+)(?::(\d+))?\s*$/i,
node = /^\s*at (?:((?:\[object object\])?\S+(?: \[as \S+\])?) )?\(?(.*?):(\d+)(?::(\d+))?\)?\s*$/i,

@@ -15,0 +15,0 @@ lines = stackString.split('\n'),

@@ -6,3 +6,3 @@ {

"keywords": ["errors", "stacktrace", "parser", "exceptions"],
"version": "0.1.3",
"version": "0.1.4",
"dependencies": {},

@@ -9,0 +9,0 @@ "devDependencies": {

@@ -30,2 +30,3 @@ # StackTrace-Parser

- [James Ide](https://github.com/ide)
- [Alexander Kotliarskyi](https://github.com/frantic)

@@ -32,0 +33,0 @@ ## LICENSE

@@ -182,2 +182,9 @@ var expect = require('expect.js'),

column: 30 } ]
},
{
from: "global code@stack_traces/test:83:55",
to: [ { file: 'stack_traces/test',
methodName: 'global code',
lineNumber: 83,
column: 55 } ]
}

@@ -184,0 +191,0 @@ ],

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc