Added a passthrough-to-data-card version of the base64 library. Compatible with the normal implementation, in theory faster, and smaller as far as code goes.

This commit is contained in:
Izaya 2017-05-14 22:29:45 +10:00
parent 516e5e7cda
commit 3d89bbd987
1 changed files with 8 additions and 0 deletions

View File

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