Created
July 15, 2018 10:26
-
-
Save jyrkive/963db99f94297857dea7af9e692b361f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local function split_to_array(s) | |
local a = {} | |
for m in utils.split(s) do table.insert(a, m) end | |
return a | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment