1.0.0 • Published 2 years ago
@pgupta-98/lotide v1.0.0
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 @pgupta-98/lotide
Require it:
const _ = require('@pgupta-98/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
assertArraysEqual(array1, array2): checks equality of two arraysassertEqual(actual, expected): checks if two inputs are equalassertObjectsEqual(actual, expected): uses eqObjects to assert equlaitycountLetters(string): counts the occurance of each letter in a stringcountOnly(array, object): counts the occurance of each value in an arrayeqArrays(array1, array2): checks equality of length of two arrayseqObjects(object1, object2): checks equality of two objectsfindKey(object, callback): finds an object key according to criteria specifiedfindKeyByValue(object, value): finds an object key by value specifiedhead(array): returns first element of an arrayletterPositions(string): returns indices of the letter positions of a string in an arraymap(array, callback): returns an array acccording to callback functionmiddle(array): returns the middle element/s of an arraytail(array): returns all elements of an array except the first elementtakeUntil(array, callback): returns an array until the callback condition is truewithout(array1, array2): removes items in array2 from array1 and returns a new array
1.0.0
2 years ago