R/parse_timestamp.R

Defines functions parse_timestamp

Documented in parse_timestamp

#' Parses timestamp string according to specs
#' @param format_spec conversion specifications found in strptime documentation
#' @export
parse_timestamp <-
        function(timestamp_string, format_spec) {
                strptime(timestamp_string, format = format_spec)
        }
patelm9/timeStampede documentation built on Nov. 5, 2019, 12:12 a.m.