Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 351 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 351 Bytes

inspect GoDoc

Usage

local inspect = require("inspect")

local table = {a={b=2}}
local result = inspect(table, {newline="", indent=""})
if not(result == "{a = {b = 2}}") then error("inspect") end