Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upempty list names #53
empty list names #53
Comments
SymbolixAU
commented
Oct 28, 2019
•
|
|
x <- list(1, x = 2)
to_json( x )
# {"":[1.0],"x":[2.0]}
names( from_json( to_json( x ) ) )
# [1] "" "x"
|