ourMELONS/R/takeLine.R
Waldir Leoncio fca9caa731 Restyled files
Ran through styler::style_dir() in the R and tests directories in preparation for #23.
2021-11-10 14:25:50 +01:00

17 lines
485 B
R

#' @title Take line
#' @description Returns one line from the description.
#' @param description description
#' @param width width
#' @return newline
#' @export
takeLine <- function(description, width) {
# Returns one line from the description: line ends to the first
# space after width:th mark.
newLine <- description[1:width]
n <- width + 1
while ((description[n] != " ") & (n < length(description))) {
n <- n + 1
}
newline <- description[1:n]
return(newline)
}