Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@instantdb/core

Package Overview
Dependencies
Maintainers
4
Versions
206
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@instantdb/core - npm Package Compare versions

Comparing version 0.10.21 to 0.10.22

2

dist/module/utils/object.js

@@ -33,4 +33,4 @@ export function areObjectKeysEqual(a, b) {

export function isObject(obj) {
return typeof obj === "object" && obj !== null;
return typeof obj === "object" && obj !== null && !Array.isArray(obj);
}
//# sourceMappingURL=object.js.map

@@ -40,5 +40,5 @@ "use strict";

function isObject(obj) {
return typeof obj === "object" && obj !== null;
return typeof obj === "object" && obj !== null && !Array.isArray(obj);
}
exports.isObject = isObject;
//# sourceMappingURL=object.js.map
{
"name": "@instantdb/core",
"version": "0.10.21",
"version": "0.10.22",
"description": "Instant's core local abstraction",

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

@@ -53,3 +53,3 @@ export function areObjectKeysEqual(a, b) {

export function isObject(obj) {
return typeof obj === "object" && obj !== null;
return typeof obj === "object" && obj !== null && !Array.isArray(obj);
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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