mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 02:56:41 +07:00
10 lines
No EOL
186 B
Lua
10 lines
No EOL
186 B
Lua
-- Sequence of items
|
|
-- Ordered, but have to loop through items to check for inclusion.
|
|
-- Currently the same as a table.
|
|
|
|
|
|
function Sequence(source)
|
|
return source
|
|
end
|
|
|
|
return Sequence |