Skip to content

A simple function that can be used to reconstruct a given table.

Notifications You must be signed in to change notification settings

MakeSureDudeDies/Lua-Table-Reconstructor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 

Repository files navigation

Lua-Table-Reconstructor

A simple function that can be used to reconstruct a given table.

Usage

testtable = {
    "About that beer i owed ya!",
    "The Missile Knows Where It Is.",
    "To be, or not to be, that is the question.",
    4,
    math.huge,
    true,
    false,
    0/0,
    math.pi,
    a = {1}
}

ReconstructTable(testtable)

Output

-- Reconstructed at: 15.4.2024 18:27 - Unix Time
-- Indexes: 10
-- Reconstructed table:

SomeTable24 = {
"About that beer i owed ya!",
"The Missile Knows Where It Is.",
"To be, or not to be, that is the question.",
4,
math.huge,
true,
false,
0/0,
math.pi,
a = {
1
},
}

Lua

About

A simple function that can be used to reconstruct a given table.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages