├── LICENSE ├── README.md ├── lib └── underscore.lua ├── spec ├── arrays_spec.lua ├── chaining_spec.lua ├── collections_spec.lua ├── functions_spec.lua ├── objects_spec.lua ├── string_spec.lua └── utility_spec.lua └── underscore-dev-1.rockspec /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarchie/underscore-lua/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarchie/underscore-lua/HEAD/README.md -------------------------------------------------------------------------------- /lib/underscore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarchie/underscore-lua/HEAD/lib/underscore.lua -------------------------------------------------------------------------------- /spec/arrays_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarchie/underscore-lua/HEAD/spec/arrays_spec.lua -------------------------------------------------------------------------------- /spec/chaining_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarchie/underscore-lua/HEAD/spec/chaining_spec.lua -------------------------------------------------------------------------------- /spec/collections_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarchie/underscore-lua/HEAD/spec/collections_spec.lua -------------------------------------------------------------------------------- /spec/functions_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarchie/underscore-lua/HEAD/spec/functions_spec.lua -------------------------------------------------------------------------------- /spec/objects_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarchie/underscore-lua/HEAD/spec/objects_spec.lua -------------------------------------------------------------------------------- /spec/string_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarchie/underscore-lua/HEAD/spec/string_spec.lua -------------------------------------------------------------------------------- /spec/utility_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarchie/underscore-lua/HEAD/spec/utility_spec.lua -------------------------------------------------------------------------------- /underscore-dev-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtarchie/underscore-lua/HEAD/underscore-dev-1.rockspec --------------------------------------------------------------------------------