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

informa-db.js

Package Overview
Dependencies
Maintainers
2
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

informa-db.js - npm Package Compare versions

Comparing version 5.0.0 to 5.5.0

2

package.json
{
"name": "informa-db.js",
"version": "5.0.0",
"version": "5.5.0",
"description": "DataBases made easier",

@@ -5,0 +5,0 @@ "main": "server.js",

@@ -24,8 +24,8 @@ const fs = require('fs');

genProxy(data, saveOnChange, update) {
genProxy(data) {
return new Proxy(data, {
set: (obj, prop, val) => {
obj[prop] = val;
if (saveOnChange) {
update();
if (this.saveOnChange) {
this.update();
}

@@ -36,4 +36,4 @@ return true;

delete obj[prop];
if (saveOnChange) {
update();
if (this.saveOnChange) {
this.update();
}

@@ -40,0 +40,0 @@ return true;

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