https://github.com/katebea/json-difference
Diferencias entre objetos JSON
https://github.com/katebea/json-difference
Last synced: 3 months ago
JSON representation
Diferencias entre objetos JSON
- Host: GitHub
- URL: https://github.com/katebea/json-difference
- Owner: kateBea
- License: mit
- Created: 2025-01-02T10:16:48.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-02T10:38:11.000Z (about 1 year ago)
- Last Synced: 2025-01-02T11:27:30.928Z (about 1 year ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Json-Difference
Diferencias entre objetos JSON
Ejemplo salida:
```shell
{
nombre: 'un_nombre2',
apellido1: 'un_appellido1',
edad: 23,
id: 'sss-adada-sS1'
}
{
nombre: 'un_nombre',
apellido1: 'un_appellido1',
edad: 25,
id: 'sss-adada-sS'
}
Differences: {
nombre: { from: 'un_nombre2', to: 'un_nombre' },
edad: { from: 23, to: 25 },
id: { from: 'sss-adada-sS1', to: 'sss-adada-sS' }
}
```