basic-object-diff-logger
v1.0.2
Published
A basic utility for logging the differences between two JavaScript objects.
Downloads
1
Readme
# basic-object-diff-logger
A simple utility library for logging differences between two JavaScript objects.
## Installation
```bash
npm install basic-object-diff-logger
Usage
const { logObjectDiffs } = require('basic-object-diff-logger');
const obj1 = { a: 1, b: 2, c: { d: 3 } };
const obj2 = { a: 1, b: 3, c: { d: 4 } };
logObjectDiffs(obj1, obj2);
License
This project is licensed under the MIT License - see the LICENSE file for details.