* Added `ZipEntry:getSafePath` which returns the path of the entry if it
was safe, or nil
* Added `ZipEntry:sanitizePath` which converts a potentially unsafe path
to a safe one, although it can change the meaning of the paths
* Updated path utility with functions `isSafe` and `sanitize`
* Path utility now always uses `/` as a path separator, converting `\\`
to `/` when needed
* Included tests for path utility
* Added new extraction option: `followSymlinks`
* Added method for querying whether an entry is a symlink using
`ZipEntry:isSymlink`
* Include tests for symlinks
Fixed a bug in the directory tree builder where for directories there
would be two entries, where one would have a trailing slash, and the
other wouldn't.
The directory without the trailing slash would get linked to its
children in the entries lookup table, while the one with the trailing
slash would exist as a "ghost directory" with no children.
The fix involved sorting the entries to first handle directories, and
linking to the existing parent directory entries for children.
Adds support for ZIP files with the `0x08` bit of the general purpose
bitflags set, i.e, those which do not include file sizes and crc
checksums in the local file header
* Implements a decompression step for extraction, currently supporting
`DEFLATE` and `STORED`
* Moved testing file to `examples/`
* Added validation step to `ZipReader:extract` with options to
optionally skip it (matches checksum and uncompressed size)