@medagrande/lotide
v1.0.1
Published
A mini library similar to [Lodash](https://lodash.com) and published by me as a learning project at Lighthouse Labs
Downloads
2
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 @medagrande/lotide
Require it:
const _ = require('@medagrande/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
assertArraysEqual(...)
: compares two arrays and prints a messageassertEqual(...)
: compares two value and prints a messageassertObjectsEqual(...)
: compares two objects and prints a messagecountLetters(...)
: takes in a string and returns a count of all the letterscountOnly(...)
: takes in an array and an object and returns an object with the count of items which are true in the object giveneqArrays(...)
: checks if two arrays are perfectly equaleqObjects(...)
: checks if two objects are equal and returns true or falsefindKey(...)
: takes in an object and a callback function and returns the first key where the callback has a truthy value otherwise returns undefinedfindKeyByValue(...)
: takes in an object and a value and returns the first key that has the valueflatten(...)
: flattens one level an array of arrayhead(...)
: returns the first element of an arrayletterPositions(...)
: takes in a string and returns the index position/s of each lettermap(...)
: takes an array and a callback function and returns an array dependent on the outcome of the callbackmiddle(...)
: returns the middle value/s of an arraytail(...)
: returns the tail of an arraytakeUntil(...)
: takes in an array and a callback function and returns a part of the arrays until the outocome of the callback is truthywithout(...)
: receives two arrays and returns the first array without the contents included in the second array