Lua:decodeFunction
Revision as of 02:59, 18 April 2018 by TheyCallMeTim13 (talk | contribs) (Created page with 'Category:Lua '''function''' decodeFunction(''encodedString'') ''':''' function Converts a given string converted by encodeFunction back into function.…')
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!')