R/create_readme.R

Defines functions create_readme

Documented in create_readme

#' Creates a README.md in the working directory if it doesn't exist
#' @importFrom readr read_lines
#' @importFrom stampede stamp_this
#' @export

create_readme <-
    function() {
        if (!file.exists("README.md")) {
            cat(stampede::stamp_this(), "\tFile Created\n", file = "README.md")
        }
    }
patelm9/readi documentation built on Dec. 2, 2020, 5:08 p.m.