Difference between revisions of "Lua:decodeFunction"
Jump to navigation
Jump to search
(Created page with 'Category:Lua '''function''' decodeFunction(''encodedString'') ''':''' function Converts a given string converted by encodeFunction back into function.…') |
(Tag: Undo) |
| (One intermediate revision by one other user not shown) | |
(No difference)
| |
Latest revision as of 16:01, 10 February 2021
function decodeFunction(encodedString) : function
Converts a given string converted by encodeFunction back into function.
Function Parameters[edit]
| Parameter | Type | Description |
|---|---|---|
| encodedString | string | The string to decode into a function |
Examples[edit]
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!')