fast-json-patch
Advanced tools
Comparing version 1.2.1 to 1.2.2
@@ -0,0 +0,0 @@ /*! |
@@ -0,0 +0,0 @@ /*! |
{ | ||
"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); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
119129
1821