![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
immutable-diff
Advanced tools
Hi-Fi diffing for Immutable.js data structures, forked from immutablediff
High Fidelity diffs for Immutable.JS objects
Forked from immutable-diff which focuses more on RFC 6902 style patches, requiring string values for the paths.
op.path
is now an Immutable.List
rather than a patch style path, usable for .updateIn
null
& undefined
are considered separate valuesCreates a diff between a
and b
var Immutable = require('immutable');
var diff = require('immutable-diff');
var map1 = Immutable.Map({a:1, b:2, c:3});
var map2 = Immutable.Map({a:1, b:2, c:3, d: 4});
diff(map1, map2);
// List [ Map { op: "add", path: ["d"], value: 4 } ]
var map1 = Immutable.Map({a:1, b:2, c:3});
var map2 = Immutable.Map({a:1, b:2, c:3, d: 4});
add
A new key was added
remove
An existing key was removed
replace
An existing key was replaced with a new value
MIT
FAQs
Hi-Fi diffing for Immutable.js data structures, forked from immutablediff
The npm package immutable-diff receives a total of 0 weekly downloads. As such, immutable-diff popularity was classified as not popular.
We found that immutable-diff demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.