An open API service indexing awesome lists of open source software.

https://github.com/leothorp/underbar


https://github.com/leothorp/underbar

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

Underbar
==============

This is a project I completed as a student at Hack Reactor. The project is a minimal functional library for JavaScript, similar to underscore or lodash.:

## Collection methods:

- _.first()
- _.last()
- _.each()
- _.indexOf()
- _.filter()
- _.reject()
- _.uniq()
- _.map()
- _.pluck()
- _.reduce()
- _.contains()
- _.every()
- _.some()
- _.shuffle()
- _.sortBy()
- _.zip()
- _.flatten()
- _.intersection()
- _.difference()
- _.invoke()

## Object methods:

- _.extend()
- _.defaults()

## Function Decorators

- _.once()
- _.memoize()
- _.delay()
- _.shuffle()
- _.throttle()

### Testing

Mocha tests are located in the ./spec directory. To run, open SpecRunner.html with your preferred browser.