R/reduce_nothing.r

Defines functions reduce_nothing

Documented in reduce_nothing

#' Leave the data as is.
#'
#' @param data input data
#' @export
#' @examples
#' reduce_nothing(diamonds[1:3])
reduce_nothing <- function(data, ...) {
  data
}
hadley/linval documentation built on May 17, 2019, 10:42 a.m.