New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@nexcodepl/store

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nexcodepl/store - npm Package Compare versions

Comparing version
1.0.8
to
1.0.9
+12
-0
dist/compare.js
export function compare(a, b, compareDepth) {
if (a === null && b !== null)
return false;
if (a !== null && b === null)
return false;
if (a === null && b === null)
return true;
if (a === undefined && b !== undefined)
return false;
if (a !== undefined && b === undefined)
return false;
if (a === undefined && b === undefined)
return true;
if (typeof a !== typeof b)

@@ -3,0 +15,0 @@ return false;

+1
-1
{
"name": "@nexcodepl/store",
"version": "1.0.8",
"version": "1.0.9",
"description": "State management library",

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