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

diffsync

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

diffsync - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

2

package.json
{
"name": "diffsync",
"version": "0.0.2",
"version": "0.0.3",
"description": "Real time collaborative editing for JSON objects",

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

@@ -24,3 +24,3 @@ var _ = require('underscore'),

localCopy: {},
diffs: []
edits: []
};

@@ -103,3 +103,3 @@

if(!_.isEmpty(diff)){
this.doc.diffs.push(this.createDiffMessage(diff, basedOnLocalVersion));
this.doc.edits.push(this.createDiffMessage(diff, basedOnLocalVersion));
this.doc.localVersion++;

@@ -106,0 +106,0 @@ }

@@ -163,3 +163,3 @@ var assert = require('assert'),

assert.equal(editMessage.serverVersion, client.doc.serverVersion);
assert.equal(editMessage.edits, client.edits);
assert.equal(editMessage.edits, client.doc.edits);
});

@@ -166,0 +166,0 @@ });

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