Socket
Socket
Sign inDemoInstall

dexie-encrypted

Package Overview
Dependencies
11
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.3 to 1.0.4

8

dist/index.js

@@ -207,3 +207,9 @@ 'use strict';

table.hook('updating', function(modifications, primKey, obj) {
return encryptWithRule(table, { ...obj }, newSetting);
const decrypted = decryptWithRule({ ...obj }, newSetting);
const updates = {
...decrypted,
...modifications,
};
const encrypted = encryptWithRule(table, updates, newSetting);
return encrypted;
});

@@ -210,0 +216,0 @@ table.hook('reading', function(obj) {

2

package.json
{
"name": "dexie-encrypted",
"version": "1.0.3",
"version": "1.0.4",
"description": "Encryption middleware for Dexie",

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc