R/compat-strrep.R

if (getRversion() < "3.3.0") {
  strrep <- function(x, times) {
    map_chr(
      times,
      function(n) paste(rep(x, n), collapse = "")
    )
  }
}
tidyverse/tibble documentation built on May 16, 2024, 6:18 a.m.