Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

yasoo

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yasoo - npm Package Compare versions

Comparing version
0.12.0
to
0.12.1
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: yasoo
Version: 0.12.0
Version: 0.12.1
Summary: Yet another serializer of objects

@@ -5,0 +5,0 @@ Home-page: https://github.com/drorvinkler/yasoo

@@ -9,3 +9,3 @@ import setuptools

name="yasoo",
version="0.12.0",
version="0.12.1",
author="Dror A. Vinkler",

@@ -12,0 +12,0 @@ description="Yet another serializer of objects",

Metadata-Version: 2.1
Name: yasoo
Version: 0.12.0
Version: 0.12.1
Summary: Yet another serializer of objects

@@ -5,0 +5,0 @@ Home-page: https://github.com/drorvinkler/yasoo

@@ -332,5 +332,10 @@ import json

) -> List[Tuple[Optional[type], Any]]:
if type_hint is None:
generic_args = None
try:
if type_hint is not None:
_, generic_args = normalize_type(type_hint)
except TypeError:
pass
if generic_args is None:
return [(None, item) for item in data]
_, generic_args = normalize_type(type_hint)
if len(generic_args) == 1 or (

@@ -337,0 +342,0 @@ len(generic_args) == 2 and generic_args[1] is ...