1.0.0 • Published 3 years ago

@abdigureye/lotide v1.0.0

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

Require it:

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

Call it:

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

Documentation

The following functions are currently implemented:

  • eqArrays: Accepts two arrays and returns true or false based on if they are equal Takes in two arrays returns true or false if equal/not equal
  • tail: Takes in array and returns the same array minus the first value
  • assertArraysEqual: Returns true or false dependant on arrays passed through are equal/not equal
  • middle: Takes in array and returns array with middle value
  • countLetters: Takes in a string and returns object with key-value pairs indicating letters and # of times appeared in said string
  • head' : Takes in array to output first value
  • takeUntil: Takes in array and a callback and returns the array elements up untill the callback is satisfied
  • letterPositions: Takes in string and returns object of letters and its index
  • map: Takes in an array and callback function and creates new resulting array using callbacks
  • findKeyByValue: akes an object and finds value needed by going through object and returning matching value
  • eqObjects: Takes in two objects and returns true or false if said objects are equal/not equal
  • without: Takes a source and removes desired item
  • findKey: Takes in object and callback and goes through object to return desired key and truthy value
  • countOnly: Takes in an array and returns an object of the most reoccuring element
  • assertEqual: Takes in actual and expected to match
  • assertObjectsEqual: Takes in two objects for assertation purposes