R/cnOS.R

Defines functions cnOS

Documented in cnOS

#' Chinese operating system
#' Whether the computer is Chinese operating system
#' @return logical
#' @export
#'
#' @examples
#' cnOS()
cnOS <- function(){
    grepl('chinese',tolower(Sys.getlocale()))
}
yikeshu0611/do documentation built on Aug. 5, 2021, 4:17 p.m.