R/uuid.R

# UUID

#' @export
uuid=function()
{
  uuid_len = 24
  if (Sys.info()['sysname'] == "Darwin") uuid_len = 15
  paste(sample(c(letters, LETTERS), uuid_len, replace=TRUE), collapse="")
}

Try the synchronicity package in your browser

Any scripts or data that you put into this service are public.

synchronicity documentation built on May 2, 2019, 8:58 a.m.