powered by
Converts an Automerge document to a standard R list. This is equivalent to as.list.am_doc().
as.list.am_doc()
from_automerge(doc)
Named list with document contents
An Automerge document
doc <- am_create() doc$name <- "Alice" doc$age <- 30L from_automerge(doc) # list(name = "Alice", age = 30L) am_close(doc)
Run the code above in your browser using DataLab