We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb4beec commit 96746ffCopy full SHA for 96746ff
R/utils.R
@@ -10,6 +10,8 @@ snapshots <- function() {
10
}
11
url <- "https://production.r-multiverse.org/snapshots.json"
12
snapshots <- jsonlite::stream_in(gzcon(url(url)), verbose = FALSE)
13
+ dates <- as.Date(snapshots$snapshot)
14
+ snapshots <- snapshots[rev(order(dates)), ]
15
cache[["snapshots"]] <- snapshots
16
cache[["snapshots"]]
17
0 commit comments