R/utils.R
backspace.Rd
String of n Backspaces
backspace(n)
number of backspace characters
vector of character of length one
update <- function(x) cat(backspace(3), x) x <- "value: 123" cat(x) #> value: 123 cat(paste0(x, backspace(3), "987")) #> value: 123987