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

@blocksuite/store

Package Overview
Dependencies
Maintainers
5
Versions
1249
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blocksuite/store - npm Package Compare versions

Comparing version 0.3.0-20221229170017-735c989 to 0.3.0-20221230041649-6b8fcf7

8

dist/yjs/proxy.js

@@ -48,3 +48,9 @@ import { Map as YMap } from 'yjs';

else {
return Reflect.set(target, p, value, receiver);
if (typeof p === 'string') {
yMap.set(p, value);
return Reflect.set(target, p, value, receiver);
}
else {
throw new Error('key cannot be a symbol');
}
}

@@ -51,0 +57,0 @@ },

2

package.json
{
"name": "@blocksuite/store",
"version": "0.3.0-20221229170017-735c989",
"version": "0.3.0-20221230041649-6b8fcf7",
"description": "BlockSuite data store built for general purpose state management.",

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

@@ -62,3 +62,8 @@ import { Map as YMap } from 'yjs';

} else {
return Reflect.set(target, p, value, receiver);
if (typeof p === 'string') {
yMap.set(p, value);
return Reflect.set(target, p, value, receiver);
} else {
throw new Error('key cannot be a symbol');
}
}

@@ -65,0 +70,0 @@ },

Sorry, the diff of this file is not supported yet

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