Forgot to return it x_x

This commit is contained in:
Izaya 2017-05-14 22:31:03 +10:00
parent 3d89bbd987
commit bcbea6facd

View File

@ -1,8 +1,8 @@
do do
function b64(data) function b64(data)
component.invoke(component.list("data")(),"encode64",data) return component.invoke(component.list("data")(),"encode64",data)
end end
function ub64(data) function ub64(data)
component.invoke(component.list("data")(),"decode64",data) return component.invoke(component.list("data")(),"decode64",data)
end end