# Lotide

A mini clone of the [Lodash](https://lodash.com) library.

## Purpose

**_BEWARE:_ This library was published for learning purposes. It is _not_ intended for use in production-grade software.**

This project was created and published by me as part of my learnings at Lighthouse Labs. 

## Usage

**Install it:**

`npm install @veremenko/lotide`

**Require it:**

`const _ = require('@veremenko/lotide');`

**Call it:**

`const results = _.tail([1, 2, 3]) // => [2, 3]`

## Documentation

The following functions are currently implemented:

* `countLetters`: returns number of letters in a given string
* `countOnly`: returns number of certen letters in a given string
* `findKey`: returns a key of a property with given value
* `findKeyByValue`: returns a key of a property with given valuereturns a key of a property with given value
* `flatten`: description
* `head`: description
* `letterPosition`: description
* `map`: description
* `middle`: description
* `tail`: description
* `takeUntil`: description
* `without`: description




