We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
write_file_md5()
can take some inspiration from readr::write_rds():
readr::write_rds()
compress <- match.arg(compress, c("none", "gz", "bz", "xz")) con <- switch( compress, none = file(file, ...), gz = gzfile(file, ...), bz = bzfile(file, ...), xz = xzfile(file, ...) ) write_function(x, con, ...)
all functions need to be rewritten to accept connections and set encoding via that function instead.
The text was updated successfully, but these errors were encountered:
reformat; include compression (#224)
a01ac17
redoc (#224)
ff1236e
Update test-write.R (#224)
0621a23
bump version and news item (#224)
77d2d66
delint (#224)
356b6ed
some cleanup (#224)
f1cf0de
jmbarbone
Successfully merging a pull request may close this issue.
can take some inspiration from
readr::write_rds()
:all functions need to be rewritten to accept connections and set encoding via that function instead.
The text was updated successfully, but these errors were encountered: