node-gzip
node-gzip copied to clipboard
Any reason to use this over promisify(zlib.gzip)
Since node 12 you can just do
promisify(zlib.gzip)(buffer)
Which is the idiomatic way to promisify gzip.
Is there a reason for this library to exist at this point? Should it follow what other common-name npm packages have done and mark itself as deprecated in favor of the idiomatic approach (with a tutorial on the idiomatic approach as the README)?