Sign In

@jsonjoy.com/json-pointer

Package Overview
Dependencies
Maintainers
2
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jsonjoy.com/json-pointer - npm Package Compare versions

Comparing version
18.24.0
to
18.28.0
+1
-1
lib/find.js

@@ -56,3 +56,3 @@ "use strict";

}
else if (typeof obj === 'object' && !!obj) {
else if (typeof obj === 'object' && obj) {
val = (0, hasOwnProperty_1.hasOwnProperty)(obj, key) ? obj[key] : undefined;

@@ -59,0 +59,0 @@ }

@@ -32,3 +32,3 @@ "use strict";

}
else if (typeof obj === 'object' && !!obj) {
else if (typeof obj === 'object' && obj) {
val = (0, hasOwnProperty_1.hasOwnProperty)(obj, String(key)) ? obj[key] : undefined;

@@ -35,0 +35,0 @@ }

@@ -39,3 +39,3 @@ "use strict";

}
else if (typeof obj === 'object' && !!obj) {
else if (typeof obj === 'object' && obj) {
val = (0, hasOwnProperty_1.hasOwnProperty)(obj, String(key)) ? obj[key] : undefined;

@@ -42,0 +42,0 @@ }

@@ -39,3 +39,3 @@ "use strict";

}
else if (typeof obj === 'object' && !!obj) {
else if (typeof obj === 'object' && obj) {
val = (0, hasOwnProperty_1.hasOwnProperty)(obj, String(key)) ? obj[key] : undefined;

@@ -42,0 +42,0 @@ }

@@ -31,3 +31,3 @@ "use strict";

}
else if (typeof obj === 'object' && !!obj) {
else if (typeof obj === 'object' && obj) {
val = (0, hasOwnProperty_1.hasOwnProperty)(obj, key) ? obj[key] : undefined;

@@ -34,0 +34,0 @@ }

@@ -34,3 +34,3 @@ "use strict";

}
else if (typeof obj === 'object' && !!obj) {
else if (typeof obj === 'object' && obj) {
key = (0, util_1.unescapeComponent)(key);

@@ -37,0 +37,0 @@ val = (0, hasOwnProperty_1.hasOwnProperty)(obj, key) ? obj[key] : undefined;

@@ -30,3 +30,3 @@ "use strict";

}
else if (typeof obj === 'object' && !!obj) {
else if (typeof obj === 'object' && obj) {
key = (0, util_1.unescapeComponent)(key);

@@ -33,0 +33,0 @@ val = (0, hasOwnProperty_1.hasOwnProperty)(obj, key) ? obj[key] : undefined;

@@ -7,3 +7,3 @@ {

},
"version": "18.24.0",
"version": "18.28.0",
"description": "High-performance JSON Pointer implementation",

@@ -77,4 +77,4 @@ "author": {

"dependencies": {
"@jsonjoy.com/util": "18.24.0"
"@jsonjoy.com/util": "18.28.0"
}
}

Sorry, the diff of this file is not supported yet