Nothing
#' Check if an object might be an assessment list.
#'
#' @param possible_list An object to be checked,
#'
#' @return A logical. TRUE if possible_list could be a list of assessments from
#' universalfqa.org and FALSE if it's definitely not.
#'
#' @noRd
is_assessment_list <- function(possible_list) {
return <- FALSE
tryCatch({
if (is.list(possible_list) & (length(possible_list) != 0)) {
outcomes <- lapply(possible_list,
is_assessment) |>
as.logical()
return <- all(outcomes)
} else {
return <- FALSE
}
},
error = function(e) {
return <- FALSE
},
warning = function(w){
return <- FALSE
})
return
}
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.