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

oas-resolver

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oas-resolver - npm Package Compare versions

Comparing version 1.0.10 to 1.0.11

8

index.js

@@ -126,3 +126,9 @@ 'use strict';

let target = url.resolve(base ? base + '/' : '', pointer)
let target;
if (effectiveProtocol === 'file:') {
target = path.resolve(base ? base + '/' : '', pointer);
}
else {
target = url.resolve(base ? base + '/' : '', pointer);
}

@@ -129,0 +135,0 @@ if (options.cache[target]) {

4

package.json
{
"name": "oas-resolver",
"version": "1.0.10",
"version": "1.0.11",
"description": "Resolve external $refs in OpenAPI (swagger) 2.0 / 3.x definitions",

@@ -28,3 +28,3 @@ "main": "index.js",

},
"gitHead": "2850062dbf05f7a70033e256dd7247644dde3c82"
"gitHead": "e1f081373030c7b331cbd4ebd1042c19b2784a18"
}
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