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

@hyperjump/json-reference

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hyperjump/json-reference - npm Package Compare versions

Comparing version 0.3.1 to 0.3.2

5

dist/json-reference.js

@@ -75,4 +75,7 @@ "use strict";

var isObject = function isObject(value) {
return (typeof value === "undefined" ? "undefined" : _typeof(value)) === "object" && !Array.isArray(value) && value !== null;
};
var isRef = function isRef(value) {
return (typeof value === "undefined" ? "undefined" : _typeof(value)) === "object" && "$ref" in value;
return isObject(value) && "$ref" in value;
};

@@ -79,0 +82,0 @@

2

package.json
{
"name": "@hyperjump/json-reference",
"version": "0.3.1",
"version": "0.3.2",
"description": "An implementation of JSON Reference",

@@ -5,0 +5,0 @@ "main": "./dist/json-reference.js",

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