Closed danramteke closed 7 years ago
Great! Glad you like it!
Perhaps at the top of Data+Gzip.swift
the imports should be
#if os(Linux)
import zlibLinux
#else
import zlib
#endif
instead of
#if os(OSX)
import zlib
#elseif os(Linux)
import zlibLinux
#endif
in order to support os's that are not OSX or Linux.
This is great! Thank you @danramteke.