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

fast-json-patch

Package Overview
Dependencies
Maintainers
3
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fast-json-patch - npm Package Compare versions

Comparing version 1.2.1 to 1.2.2

0

dist/json-patch-duplex.min.js

@@ -0,0 +0,0 @@ /*!

@@ -0,0 +0,0 @@ /*!

2

package.json
{
"name": "fast-json-patch",
"version": "1.2.1",
"version": "1.2.2",
"description": "Fast implementation of JSON-Patch (RFC-6902) with duplex (observe changes) capabilities",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/Starcounter-Jack/JSON-Patch",

/*!
* https://github.com/Starcounter-Jack/JSON-Patch
* json-patch-duplex.js version: 1.2.1
* json-patch-duplex.js version: 1.2.2
* (c) 2013 Joachim Wester

@@ -5,0 +5,0 @@ * MIT license

/*!
* https://github.com/Starcounter-Jack/JSON-Patch
* json-patch-duplex.js version: 1.2.1
* json-patch-duplex.js version: 1.2.2
* (c) 2013 Joachim Wester

@@ -617,2 +617,6 @@ * MIT license

var value_1;
if (patch[i].op == '_get') {
patch[i].value = document;
return "continue";
}
if (patch[i].op == "replace" || patch[i].op == "move") {

@@ -619,0 +623,0 @@ results[i] = deepClone(document);

/*!
* https://github.com/Starcounter-Jack/JSON-Patch
* json-patch-duplex.js version: 1.2.1
* json-patch-duplex.js version: 1.2.2
* (c) 2013 Joachim Wester

@@ -5,0 +5,0 @@ * MIT license

/*!
* https://github.com/Starcounter-Jack/JSON-Patch
* json-patch-duplex.js version: 1.2.1
* json-patch-duplex.js version: 1.2.2
* (c) 2013 Joachim Wester

@@ -398,2 +398,6 @@ * MIT license

var value_1;
if (patch[i].op == '_get') {
patch[i].value = document;
return "continue";
}
if (patch[i].op == "replace" || patch[i].op == "move") {

@@ -400,0 +404,0 @@ results[i] = deepClone(document);

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