Skip to contents

Prep array

Usage

prep_array(x)

Arguments

x

a list object.

Value

unnamed vector

Examples


# this form can arise because of the csv template
nested_list <- list(list("formats" = list("formats" = "csv",
"formats" = "fasta")))

prep_array(nested_list)
#> [1] "csv"   "fasta"