Spaces:
Build error
Build error
File size: 225 Bytes
def1299 |
1 2 3 4 5 6 7 8 9 10 11 12 |
module Base64Service
def self.encode(text)
return nil unless text
Base64.encode64(text)
end
def self.decode(text)
return nil unless text
Base64.decode64(text) #.force_encoding("UTF-8").encode
end
end
|