@charlielhl/lotide
v1.0.1
Published
Charlie Curry's lotide project for Lighthouse Labs
Downloads
3
Readme
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 @charlielhl/lotide
Require it:
const _ = require('@charlielhl/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
head(array)
: takes an array and returns the first item in ittail(array)
: takes an array and returns a new array with everything except the first itemmiddle(array)
: takes an array and returns the middle item of it as an array (1 item for odd and 2 items for even)assertArraysEqual(actual, expected)
: takes two arrays and returns a message corresponding to if they match or notassertEqual(actual, expected)
: takes two basic inputs and returns a message corresponding to if they match or notassertObjectsEqual(actual, expected)
: takes two objects and returns a message corresponding to if they match or notcountLetters(sentence)
: takes a string and counts the amount of each letter present in itcountOnly(allItems, itemsToCount)
: takes an array and an object and returns an object with only the specified inputs countedeqArrays(arr1, arr2)
: takes two arrays and returns a boolean corresponding to if they are equal or noteqObjects(object1, object2)
: takes two objects and returns a boolean corresponding to if they are equal or notfindKey(object, callback)
: finds the first key of an object that matches the criteria created by the callback functionfindKeyByValue(object, value)
: returns an objects key that matches with the given valueflatten(array)
: takes a nested array and returns a new, un-nested arrayletterPositions(sentence)
: returns an object of arrays showing the indices of each letter in a sentencemap(array, callback)
: applies a given callback function to each item in an array and returns the resulttakeUntil(array, callback)
: loops through a given array until it reaches a condition stated by the callback function, which stops the loop, and returns what passed through thus farwithout(source, itemsToRemove)
: returns a new array based on the source array with things specified by the itemsToRemove array removed