1.0.1 • Published 3 years ago

@elim04/lotide v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years 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 @elim04/lotide

Require it:

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

Call it:

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

Documentation

The following functions are currently implemented:

  • function1(assertArraysEqual): asserts if arrays and their contents to see if they are equal
  • function2(assertEqual): compares if expected with actual
  • function3(countLetters): determines the number of each letter in a string
  • function4(countOnly): counts number of items
  • function5(eqArrays): determines if contents of array are equal to each other
  • function6(eqObjects): determines if objects and their contents are equal to each other
  • function7(findKey): finds a specific key in an object
  • function8(findKeyByValue): finds a key with specific value in an object
  • function9(flatten): turns nested arrays into one array
  • function10(head): returns the 0 index of an array
  • function11(letterPositions): determines the letter position (index) of each letter in a string
  • function12(map): modfiys each item of an array and returns that array with new values
  • function13(middle): returns the middle of an array
  • function14(tail): returns the tail end of an array
  • function15(takeUntil): filters an array until a certain condition is met
  • function16(without): filters an array without a specific item
1.0.1

3 years ago

1.0.0

3 years ago