My own reimplemented version of the much used underscore.js library, using a fully TDD approach and native JavaScript
- identity
- first
- last
- each
- indexOf
- filter
- reject
- uniq
- map
- pluck
- reduce
- contains
- every
- some
- extends
- defaults
- indexOf (binary)
- once
- memoize
- delay
- shuffle
- invoke
- sortBy
- zip
- flatten
Please follow the below instructions to gain a copy on your local machine
git clone https://github.com/curtisjohnson1/lowbar
Install all dependencies
npm install
All tests can be found by running the below command
npm test
- Mocha - Testing Framework
- Chai - Assertion Library
- Sinon - Test spies, stubs and mocks for JavaScript
- Curtis Johnson curtisjohnson1