R/getIpoStatus.R

Defines functions getIpoStatus

Documented in getIpoStatus

#' Helper function to return the ipo status dictionary
#'
#'@return dictionary
#'
#' @author Layla Rohkohl, \email{byehity@gmail.com}
#'
#' @examples
#' getIpoStatus()
#'
#' @export
#'
getIpoStatus <- function() {
  return(c(
    "delisted" = "Delisted",
    "private" = "Private",
    "public" = "Public"
  ))
}
Lyrohk/cruncher documentation built on Dec. 17, 2021, 1:17 a.m.