R/pull_first.R

#' pull_first
#'
#' @param x tibble
#' @param ... passed to [dplyr::pull()]
#'
#' @return object
#' @export
#'
pull_first <- function (x, ...) {
  dplyr::pull(x, ...)[[1]]
}
BAAQMD/tbltools documentation built on Feb. 29, 2024, 5:45 a.m.