#' return_NA_pluck
#'
#' return_NA_pluck
#' @param .x list
#' @param ... element of list
#' @param .default return NA
#' @export
return_NA_pluck = function(.x, ..., .default = NA) {
rlt <- purrr::pluck(.x = .x, ..., .default = .default)
return(rlt)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.