New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hybrids

Package Overview
Dependencies
Maintainers
2
Versions
149
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hybrids - npm Package Compare versions

Comparing version 8.2.11 to 8.2.12

2

package.json
{
"name": "hybrids",
"version": "8.2.11",
"version": "8.2.12",
"description": "A JavaScript framework for creating fully-featured web applications, components libraries, and single web components with unique declarative and functional architecture",

@@ -5,0 +5,0 @@ "type": "module",

@@ -992,3 +992,6 @@ import * as cache from "./cache.js";

throw TypeError(
stringifyModel(Model, "Provided model definition does not support id"),
stringifyModel(
Model,
`Provided model definition does not support id: ${JSON.stringify(id)}`,
),
);

@@ -1522,4 +1525,6 @@ }

: (host, value) => {
if (value !== null && typeof value === "object") return value.id;
return value ? String(value) : undefined;
if (value !== null && value !== undefined) {
return typeof value === "object" ? value.id : String(value);
}
return undefined;
};

@@ -1526,0 +1531,0 @@

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