1.0.1 • Published 4 years ago
@cd-mackay/lotide v1.0.1
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 @cd-mackay/lotide
Require it:
const _ = require('@cd-mackay/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
function1(head)
: returns the first item of a given arrayfunction2(middle)
: returns the middle element(s) of a given arrayfunction3(eqarrays)
: tests if two provided arrays are equalfunction4(assertArraysEqual)
: Provides visible assertions that arrays are/are not equalfunction5(assertEqual)
: Determines if two elements are equalfunction6(eqObjects)
: Determines if two {objects} are equalfunction7(assertObjectsEqual)
: Provides feedback if two objects are/are not equalfunction8(countLetters)
: Counts all the occurences of different characters in a string, returns an objectfunction9(countOnly)
: Counts all instances of given items in an arrayfunction10(findKey)
: Uses object and callback, returns first key in which callback(key) is truthyfunction11(findKeyByValue)
: Searches provided object and returns first key which matches given valuefunction12(flatten)
: Flattens nested/embedded arrays into a single arrayfunction13(letterPositions)
: Determines the index value of each letter in a given stringfunction14(map)
: implements a provided callback function on each element of an arrayfunction15(takeUntil)
: Iterates through an array, returns everything previous to the index in which the callback function returned true.