1.0.1 • Published 1 year ago

@erikwehrmann/lotide v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Lotide

A mini clone of the Lodash 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 @erikwehrmann/lotide

Require it:

const _ = require('@erikwehrmann/lotide');

Call it:

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

Documentation

The following functions are currently implemented:

  • head(arr): returns the first (head) index of an array.
  • tail(arr): returns the last indexes (tail) of an array.
  • middle(arr): returns the middle index(es) of an array.
  • flatten(arr): returns a non-nested array.
  • countOnly(allItems, itemsToCount): takes array of items and object defining the items you want to count and returns a list contains the counted items.
  • letterPositions(str): takes a string and returns an object listing the position of each letter.
  • findKeyByValue(obj, val): takes an object and a value and finds the key that value belongs to.
  • eqArrays(arr1, arr2): returns true if arr1 = arr2; returns false if arr1 =/= arr2.
  • eqObjects(obj1, obj2): returns true if obj1 = obj2; returns false if obj1 =/= obj2.
1.0.1

1 year ago

1.0.0

1 year ago