Nothing
#' Determine operating systems
#'
#' @return `TRUE` or `FALSE`
#' @examples
#' is_windows()
#' is_macos()
#' is_linux()
#' @name os
NULL
#' @export
#' @rdname os
is_windows <- function() {
Sys.info()[["sysname"]] == "Windows"
}
#' @export
#' @rdname os
is_macos <- function() {
Sys.info()[["sysname"]] == "Darwin"
}
#' @export
#' @rdname os
is_linux <- function() {
Sys.info()[["sysname"]] == "Linux"
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.