jsondiff-package: jsondiff: render difference between JSONs

Description Support Examples

Description

An R interface to jsondiffpatch library https://github.com/benjamine/jsondiffpatch

Support

Use https://github.com/bergant/jsondiff/issues for bug reports

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
## Not run: 

x1 <- list(
  name = "Pluto",
  orbital_speed_kms = 4.7,
  category = "planet",
  composition = c("methane", "nitrogen")
)

x2 <- list(
  name = "Pluto",
  category = "dwarf planet",
  orbital_speed_kms = 4.7,
  composition = c("nitrogen", "methane", "carbon monoxide")
)

jsondiff(x1, x2)


## End(Not run)

bergant/jsondiff documentation built on May 22, 2019, 12:37 p.m.