R/utils.R

Defines functions pull_extract

#' @importFrom dplyr pull
#' @importFrom magrittr extract2

pull_extract <- function(df, col_name){

	df %>%
		pull({{ col_name }}) %>%
		extract2(1)
}
jameslairdsmith/bankstatements documentation built on Dec. 20, 2021, 9:03 p.m.