Add iconv support
Iconv is a library to convert a sequence of characters in one character encoding to a sequence of characters in another character encoding. Example below converts utf-16 big endian string into utf-8 string: convertor = require('iconv').new('UTF-16BE', 'UTF-8') converted_string = convertor(source_string) Closes #2587
src/lua/iconv.lua
0 → 100644
test/app-tap/iconv.test.lua
0 → 100755
Please register or sign in to comment