# @isamuito/lotide

> a mini clone of lodash

Latest version **1.0.1** (published 2021-02-09) · ISC license · 0 weekly downloads

## Install

```sh
npm install @isamuito/lotide
pnpm add @isamuito/lotide
yarn add @isamuito/lotide
bun add @isamuito/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.1 |
| Published | 2021-02-09 |
| First published | 2021-02-08 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 16.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Isamu Ito |
| Maintainers | isamuito |

## Links

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

## Recent versions

- 1.0.1 (latest) — 2021-02-09
- 1.0.0 — 2021-02-08

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

**Require it:**

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

**Call it:**

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

## Documentation

The following functions are currently implemented:

* `head()`: Takes in a single array and returns the 0th element. ex. head([1,2,3]) => 1
* `tail()`: Takes in a single array and removes the first element (non-destructive), returning the rest of the array.
* `middle()`: description

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