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

verse.db

Package Overview
Dependencies
Maintainers
2
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

verse.db - npm Package Compare versions

Comparing version 2.1.1 to 2.1.2

17

dist/core/functions/operations.js

@@ -24,2 +24,19 @@ "use strict";

}
else if (typeof update[key] === 'object' && !Array.isArray(update[key])) {
const parts = key.split('.');
let target = doc;
while (parts.length > 1) {
const part = parts.shift();
if (part !== undefined) {
if (!target[part]) {
target[part] = {};
}
target = target[part];
}
}
const lastPart = parts[0];
if (lastPart !== undefined) {
target[lastPart] = { ...target[lastPart], ...update[key] };
}
}
else {

@@ -26,0 +43,0 @@ doc[key] = update[key];

2

package.json
{
"name": "verse.db",
"version": "2.1.1",
"version": "2.1.2",
"description": "verse.db isn't just a database, it's your universal data bridge. Designed for unmatched flexibility, security, and performance, verse.db empowers you to manage your data with ease.",

@@ -5,0 +5,0 @@ "license": "MIT",

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