🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

svelte-forms-lib

Package Overview
Dependencies
Maintainers
2
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte-forms-lib - npm Package Compare versions

Comparing version

to
1.10.8

2

build/index.js

@@ -647,3 +647,3 @@ 'use strict';

copy[key] =
typeof object[key] === 'object' ? assignDeep(object[key], value) : value;
typeof object[key] === 'object' && !isNullish(object[key]) ? assignDeep(object[key], value) : value;
}

@@ -650,0 +650,0 @@ return copy;

@@ -87,3 +87,3 @@ import {dequal as isEqual} from 'dequal/lite';

copy[key] =
typeof object[key] === 'object' ? assignDeep(object[key], value) : value;
typeof object[key] === 'object' && !isNullish(object[key]) ? assignDeep(object[key], value) : value;
}

@@ -90,0 +90,0 @@ return copy;

{
"name": "svelte-forms-lib",
"version": "1.10.7",
"version": "1.10.8",
"description": "Svelte forms lib - A lightweight library for managing forms in Svelte v3",

@@ -5,0 +5,0 @@ "typings": "./lib/index.d.ts",

Sorry, the diff of this file is not supported yet