New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@kizahasi/flocon-core

Package Overview
Dependencies
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kizahasi/flocon-core - npm Package Compare versions

Comparing version 0.9.1 to 0.9.2

12

dist/internal/ot/room/board/imagePiece/v1.js

@@ -109,3 +109,7 @@ "use strict";

const apply = ({ state, operation }) => {
const result = { ...state, ...Piece.apply({ state, operation }) };
const piece = Piece.apply({ state, operation });
if (piece.isError) {
return piece;
}
const result = { ...state, ...piece.value };
if (operation.image != null) {

@@ -128,3 +132,7 @@ result.image = operation.image.newValue;

const applyBack = ({ state, operation }) => {
const result = { ...state, ...Piece.applyBack({ state, operation }) };
const piece = Piece.applyBack({ state, operation });
if (piece.isError) {
return piece;
}
const result = { ...state, ...piece.value };
if (operation.image != null) {

@@ -131,0 +139,0 @@ result.image = operation.image.oldValue;

2

package.json
{
"version": "0.9.1",
"version": "0.9.2",
"license": "MIT",

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

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