@lucid-softworks/object-diff
v0.1.0
Published
Shallow own-property diffs using Object.is semantics.
Maintainers
Readme
@lucid-softworks/object-diff
Compare own enumerable string and symbol properties. The result separates
added, removed, and { before, after } changes using Object.is.
import { objectDiff } from "@lucid-softworks/object-diff";
objectDiff({ ready: false }, { ready: true, count: 1 });