Nothing
test_that("split_in_half handles common cases", {
out <- split_in_half(c("a-b", "a---b", "ab", "", NA), "-+", perl = TRUE)
expect_equal(out, cbind(
c("a", "a", "ab", "", NA),
c("b", "b", "", "", NA)
))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.