# @padofreo/lotide

> My first lotide library. Very much for learning purposes!!!

Latest version **1.0.0** (published 2020-06-01) · ISC license · 0 weekly downloads

## Install

```sh
npm install @padofreo/lotide
pnpm add @padofreo/lotide
yarn add @padofreo/lotide
bun add @padofreo/lotide
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2020-06-01 |
| First published | 2020-06-01 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 34.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Paul Adolphson |
| Maintainers | padofreo |

## Links

- npm: https://www.npmjs.com/package/@padofreo/lotide
- Repository: https://github.com/padofreo/lotide
- Homepage: https://github.com/padofreo/lotide#readme
- Issues: https://github.com/padofreo/lotide/issues
- npm.io page: https://npm.io/package/@padofreo/lotide

## Dependencies (2)

- [chai](https://npm.io/package/chai.md) ^4.2.0
- [lotide](https://npm.io/package/lotide.md) ^1.0.1

## Recent versions

- 1.0.0 (latest) — 2020-06-01

## README

# 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 @padofreo/lotide`

**Require it:**

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

**Call it:**

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

## Documentation

The following functions are currently implemented:

*  `head(...)`           : Takes the first element
*  `tail(...)`           : Takes the end element
*  `middle(...)`         : Takes the middle element of an arry
*  `countOnly(...)`      : Counts how many times a name appears in an object
*  `countLetters(...)`   : Counts the number of times a letter appears in a string
*  `findKey(...)`        : Returns the key by referencing it's value
*  `findKeyByValue(...)` : Returns the key by referencing it's value
*  `flatten(...)`        : Flattens a nested array
*  `letterPositions(...)`: Returns the index position of a letter in a string
*  `map(...)`            : Returns a letter from an array by position
*  `pigLatin(...)`       : Turns words into pig latin
*  `reverse(...)`        : Reverses a word
*  `takeUntil,(...)`     : Returns an array until condition has been met
*  `without(...)`        : Removes specified items from an array

---
_Source: https://npm.io/package/@padofreo/lotide · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
