to_http_date {reqres} | R Documentation |
Format timestamps to match the HTTP specs
Description
Dates/times in HTTP headers needs a specific format to be valid, and is furthermore always given in GMT time. These two functions aids in converting back and forth between the required format.
Usage
to_http_date(time, format = NULL)
from_http_date(time)
Arguments
time |
A string or an object coercible to POSIXct |
format |
In case |
Value
to_http_date()
returns a properly formatted string, while
from_http_date()
returns a POSIXct object
Examples
time <- to_http_date(Sys.time())
time
from_http_date(time)
[Package reqres version 0.2.5 Index]