Argumenty
any
wymagane
Value do inspect. Non-table values zwracaja false.
Zwroty
boolean
true, gdy value jest table marked as a JSON object albo gdy Real JSON table detection nie klasyfikuje table jako array. Empty unmarked tables zwracaja true.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Zwraca, czy value jest treated as a JSON object przez Real JSON table detection.
json.isObject(value: any): boolean
local record = json.object({ name = "Real" })
local items = json.array({ "one", "two" })
local empty = {}
print(json.isObject(record))
print(json.isObject(items))
print(json.isObject(empty))