kikito / inspect.lua

Human-readable representation of Lua tables
https://github.com/kikito/inspect.lua
MIT License
1.38k stars 196 forks source link

inspect option to output binary value as hex codes instead of escaped characters #66

Open 4mig4 opened 1 year ago

4mig4 commented 1 year ago

for example

inspect(string.pack("Bc8",8,"647dedb2")) "\b647dedb2"

I would like

"\x08" instead of "\b" (backspace)