R/compat-strrep.R

if (getRversion() < "3.3.0") {
  strrep <- function(x, times) {
    map_chr(
      times,
      function(n) paste(rep(x, n), collapse = "")
    )
  }
}
hadley/tibble documentation built on March 4, 2025, 10:24 p.m.