robertzk / microserver

Minimal R server
MIT License
7 stars 2 forks source link

Simple POST inputs get unnecessarily simplified #20

Open robertzk opened 8 years ago

robertzk commented 8 years ago
> str(microserver:::from_json('{"version":"foo"}'))
 Named chr "foo"
 - attr(*, "names")= chr "version"

whereas it should be

list(version = "foo")