mirror of
https://github.com/Ukendio/jecs.git
synced 2026-03-18 00:44:32 +00:00
8 lines
189 B
Text
8 lines
189 B
Text
|
|
if not game then script = require "test/relative-string" end
|
||
|
|
|
||
|
|
local function read<T>(value: T | () -> T): T
|
||
|
|
return if type(value) == "function" then value() else value
|
||
|
|
end
|
||
|
|
|
||
|
|
return read
|