# @isabeljansi/lotide

> package created as part of the Lighthouse Labs Web Development Bootcamp

Latest version **1.0.0** (published 2021-09-21) · ISC license · 0 weekly downloads

## Install

```sh
npm install @isabeljansi/lotide
pnpm add @isabeljansi/lotide
yarn add @isabeljansi/lotide
bun add @isabeljansi/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 | 2021-09-21 |
| First published | 2021-09-21 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 32.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | @isabeljansi |
| Maintainers | isabeljansi |

## Links

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

## Recent versions

- 1.0.0 (latest) — 2021-09-21

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

**Require it:**

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

**Call it:**

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

## Documentation

The following functions are currently implemented:

* `countLetters(...)`: count the letters that are in a string.
* `countOnly(...)`: count only the strings that are present in the array.
* `findKey(...)`: find the key of an object.
* `findKeyByValue(...)`: find the object key by its value.
* `head(...)`: return the first index of an array.
* `tail(...)`: return the elements of an array except for the first element.
* `middle(...)`: return the elements that are in the middle positions of the array.
* `map(...)`: map the first letter of strings in array.
* `letterPositions(...)`: return the positions of the letters of the string.
* `takeUntil(...)`: return the values until a given predicate.
* `without(...)`: return the elements of an array without the given word.
*

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