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

fast-json-patch

Package Overview
Dependencies
Maintainers
2
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.1.5 to 1.1.6

2

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

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

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

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

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

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

"license": "MIT",
"main": "./src/json-patch-duplex.js",
"typings": "./src/json-patch-duplex.ts",
"main": "src/json-patch-duplex.js",
"typings": "src/json-patch-duplex.d.ts",
"engines": {

@@ -40,2 +40,3 @@ "node": ">= 0.4.0"

"jsonfile": "^2.3.1",
"typescript": "~2.0.0",
"underscore": "^1.8.3"

@@ -46,2 +47,3 @@ },

"tsc-watch": "tsc -w",
"uglify": "grunt uglify",
"test": "npm run test-core && npm run test-duplex",

@@ -48,0 +50,0 @@ "test-duplex": "jasmine DUPLEX=yes JASMINE_CONFIG_PATH=test/jasmine.json",

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

@@ -344,3 +344,3 @@ * MIT license

function _generate(mirror, obj, patches, path) {
if (typeof obj.toJSON === "function"){
if (typeof obj.toJSON === "function") {
obj = obj.toJSON();

@@ -347,0 +347,0 @@ }

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

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

{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"noEmitHelpers": true,
"removeComments": false,
/* emitting `use strict` made PuppetJS break */
"allowSyntheticDefaultImports": true,
"noImplicitUseStrict": true
},
"filesGlob": [
"./src/*.ts"
]}
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"noEmitHelpers": true,
"declaration": true,
"removeComments": false,
/* emitting `use strict` made PuppetJS break */
"allowSyntheticDefaultImports": true,
"noImplicitUseStrict": true
},
"include": [
"src/**/*.ts"
]
}
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