Dot not use this package.
To install development version from GitHub:
devtools::install_github("eduardobull/fastsave")# Load package
library(fastsave)
# Test dataset and temporary file path
data(mtcars)
file_dir <- file.path(tempdir(), "mtcars")
# Package usage
saveZstd(mtcars, file_dir) # or saveLZ4
mtcars2 <- readZstd(file_dir) # or readLZ4
# Test code
stopifnot(identical(mtcars, mtcars2))