You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As it stands, @std/archive only contains one type of archive format, Tar. This proposal suggests that it should be renamed to its own @std module for the following reasons:
The std currently supports many file formats and all of them, with the exception of Tar, have their own module. They are named after said file format instead of by category of format. It makes no sense for Tar to be treated differently than these other file formats.
@std/csv
@std/dotenv
@std/ini
@std/json
@std/jsonc
@std/msgpack
@std/toml
@std/yaml
While there are many archive formats, many of them also double as file compression formats, and some file formats only offer compression. Assuming both @std/archive and @std/compress existed, how would a file format that supported both be categorised?
The text was updated successfully, but these errors were encountered:
As it stands, @std/archive only contains one type of archive format, Tar. This proposal suggests that it should be renamed to its own @std module for the following reasons:
The text was updated successfully, but these errors were encountered: