@nevets/lotide

1.0.0 • Public • Published

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 @nevets/lotide

Require it:

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

Call it:

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

Documentation

The following functions are currently implemented:

  • head(array): return the first element of an array
  • tail(array): returns all but the first element of an array
  • middle(array): returns the middle element(s) of an array
  • countLetters(sentence): returns how many times a letter is used in a string
  • countOnly(allItems, ItemsToCount): returns how many instances of each string were found in the array of strings
  • eqArrays(array1, array2): takes in two arrays and returns true or false based on a perfect match
  • findKey(object, callback): returns the first key for which the callback returns a truthy value
  • letterPositions(sentence): returns all the indices (zero-based positions) in the string where each character is found
  • map(array, callback): returns a new array based on the results of the callback function
  • takeUntil(array, callback): returns a slice of the array with elements taken from the beginning. It keeps going until the callback returns a truthy value
  • without(sourceArray, itemsToRemove): return a subset of a given array, removing unwanted elements

Readme

Keywords

none

Package Sidebar

Install

npm i @nevets/lotide

Weekly Downloads

1

Version

1.0.0

License

ISC

Unpacked Size

20.6 kB

Total Files

32

Last publish

Collaborators

  • nevets