method
uncompress
v7.2.3 -
Show latest stable
- Class:
ActiveRecord::Encryption::Encryptor
uncompress(data)private
No documentation available.
# File activerecord/lib/active_record/encryption/encryptor.rb, line 152
def uncompress(data)
Zlib::Inflate.inflate(data).tap do |uncompressed_data|
uncompressed_data.force_encoding(data.encoding)
end
end