R/generateRandomCapString.R

Defines functions generateRandomCapString

# SPDX-FileCopyrightText: 2019 Petros Koutsolampros
#
# SPDX-License-Identifier: GPL-3.0-only

generateRandomCapString <- function(n = 10L) {
    paste(sample(LETTERS, n, TRUE), collapse = "")
}

Try the alcyon package in your browser

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

alcyon documentation built on April 3, 2025, 6:18 p.m.