summaryrefslogtreecommitdiff
path: root/script/encoder/ansi.lua
blob: 1016e66847a293b5ad0bd1d1da2fbae19645d5ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
local platform = require 'bee.platform'
local unicode

if platform.OS == 'Windows' then
    unicode = require 'bee.unicode'
end

local m = {}

function m.decode(text)
    if not unicode then
        return text
    end
    return unicode.a2u(text)
end

function m.encode(text)
    if not unicode then
        return text
    end
    return unicode.u2a(text)
end

return m