Nothing
#' construct a 'GSONList' object
#'
#' @param ... input GSON objects
#' @return A 'GSONList' instance
#' @export
gsonList <- function(...) {
obj <- list(...)
names(obj) <- vapply(obj, function(g) g@gsname, character(1))
class(obj) <- c("GSONList", "list")
return(obj)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.