Related to #480 but a different use case:
Often I want to prepend a string that I've built with a standard R pipe (|>), but when piped, str_c only works to add after.
long |>
pipe() |>
building_text() %>%
{str_c("new_text", .)}
becomes
long |>
pipe() |>
building_text() |>
str_prepend("new_text")