R/read_qsf.R

Defines functions read_qsf

Documented in read_qsf

#' Import a QSF file
#'
#' \code{read_qsf} reads a QSF file as a list
#'
#'
#' @param path file on disk
#' @param ... additional conversion arguments, see \code{\link[jsonlite]{read_json}}
#'
#' @details
#' This function is just a wrapper around \code{\link[jsonlite]{read_json}}.
#' Any QSF file is a JSON file.
#'
#' @export
read_qsf <- function(path, ...) jsonlite::read_json(path, ...)
writertyper/research documentation built on July 5, 2022, 11:33 p.m.