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

desktop-deep-link

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

desktop-deep-link - npm Package Compare versions

Comparing version 1.4.0 to 1.4.1

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

### [1.4.1](https://github.com/friedrith/desktop-deep-link/compare/v1.4.0...v1.4.1) (2022-01-18)
### Bug Fixes
* excludes option was including instead ([7cf21cb](https://github.com/friedrith/desktop-deep-link/commit/7cf21cbf578931dd2aa3b928dbe25184549ef080))
## [1.4.0](https://github.com/friedrith/desktop-deep-link/compare/v1.3.0...v1.4.0) (2022-01-18)

@@ -7,0 +14,0 @@

2

package.json
{
"name": "desktop-deep-link",
"version": "1.4.0",
"version": "1.4.1",
"description": "A library to transform urls to deep link for a lot of desktop apps.",

@@ -5,0 +5,0 @@ "main": "dist/tsc/index.js",

@@ -13,3 +13,3 @@ import { modules } from './modules'

export interface Options {
excludes: Array<string>
excludes?: Array<string>
}

@@ -21,5 +21,5 @@

return allModules
.filter((m: Module) => options.excludes.includes(m.id))
.filter((m: Module) => !(options?.excludes || []).includes(m.id))
.find((m: Module) => m.match(uri))
?.transform(uri)
}
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