Lua:decodeFunction
Jump to navigation
Jump to search
function decodeFunction(encodedString) : function
Converts a given string converted by encodeFunction back into function.
Function Parameters
Parameter | Type | Description |
---|---|---|
encodedString | string | The string to decode into a function |
Examples
local myCoolFunction = decodeFunction([[c-oWpDNPJ!ketlRCB=/U!NS2(5ypT38s!d+42)bq1T)V$DK]cOh6W(:.:sVD24sPxSl9{RGV?9p8L$BW3{Oh^]]) myCoolFunction('I have the power!')
local function myCoolFunction(str) print(str) end local encodedFunc = encodeFunction(myCoolFunction) local decodedFunc = decodeFunction(encodedFunc) decodedFunc('I have the power!')