minetest_x_bows/bin/lua-language-server-3.5.6-l.../script/encoder/ansi.lua

25 lines
374 B
Lua
Raw Normal View History

2022-11-03 10:37:33 -05:00
local platform = require 'bee.platform'
local unicode
if platform.OS == 'Windows' then
unicode = require 'bee.unicode'
end
local m = {}
function m.toutf8(text)
if not unicode then
return text
end
return unicode.a2u(text)
end
function m.fromutf8(text)
if not unicode then
return text
end
return unicode.u2a(text)
end
return m