1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

compress.gzip / deflate: rename gzip module into deflate module (#14682)

This commit is contained in:
ChAoS_UnItY
2022-06-05 13:48:38 +08:00
committed by GitHub
parent 4cf6abd99d
commit b000728845
5 changed files with 28 additions and 20 deletions

View File

@@ -1,8 +0,0 @@
module gzip
fn test_gzip() ? {
uncompressed := 'Hello world!'
compressed := compress(uncompressed.bytes())?
decompressed := decompress(compressed)?
assert decompressed == uncompressed.bytes()
}