New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

stacktracey

Package Overview
Dependencies
Maintainers
2
Versions
141
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stacktracey - npm Package Compare versions

Comparing version 1.0.29 to 1.0.30

2

package.json
{
"name": "stacktracey",
"version": "1.0.29",
"version": "1.0.30",
"description": "Parses call stacks, reads sources and meta-information.",

@@ -5,0 +5,0 @@ "main": "stacktracey",

@@ -108,6 +108,6 @@ # StackTracey

You can override `isThirdParty` behaviour by replacing the predicate implementation:
You can add exceptions to the `isThirdParty` predicate:
```javascript
StackTracey.isThirdParty = path => path.includes ('jquery')
StackTracey.isThirdParty.except (path => path.includes ('jquery')) // jquery paths won't be marked as thirdParty
```

@@ -114,0 +114,0 @@

@@ -168,2 +168,13 @@ "use strict";

/* Chaining helper for .isThirdParty
------------------------------------------------------------------------ */
StackTracey.isThirdParty.except = pred => {
const impl = StackTracey.isThirdParty
StackTracey.isThirdParty = path => impl (path) && !pred (path)
StackTracey.isThirdParty.except = impl.except
}
/* Array methods

@@ -170,0 +181,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