├── .gitignore ├── LICENSE ├── README.md ├── lib └── typeof.lua ├── lua-typeof-0.1-0.rockspec └── spec └── sanity.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iresty/lua-typeof/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iresty/lua-typeof/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iresty/lua-typeof/HEAD/README.md -------------------------------------------------------------------------------- /lib/typeof.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iresty/lua-typeof/HEAD/lib/typeof.lua -------------------------------------------------------------------------------- /lua-typeof-0.1-0.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iresty/lua-typeof/HEAD/lua-typeof-0.1-0.rockspec -------------------------------------------------------------------------------- /spec/sanity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iresty/lua-typeof/HEAD/spec/sanity.lua --------------------------------------------------------------------------------