R/parse_docstring.R

Defines functions parse_docstring

#' @importFrom checkmate assert_character
parse_docstring <- function(x) {
  assert_character(x, min.len = 2, any.missing = FALSE)
  x[-c(1, length(x))]
}

Try the cucumber package in your browser

Any scripts or data that you put into this service are public.

cucumber documentation built on June 30, 2024, 1:07 a.m.