1.0.0 • Published 3 years ago
@sh.tyagi22/lotide2 v1.0.0
Lotide2
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 @sh.tyagi22/lotide
Require it:
const _ = require('@sh.tyagi22/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
head(array): find the head element of an arraytail(array): get the tail of an arraymiddle(array): get the middle element of an arraywithout(array1, array2): filter the arraytakeUntil(array, function): filter the array based on a conditionletterPosition(string): get the position of letters in a stringfindKey(object, function): find key of an objectfindKeyByValue(object, value): find key by value of an objecteqObjects(object1, object2): compare 2 objectseqArrays(array1, array2): compare 2 arrayscountOnly(array, object): return the names from array which have truthy value in objectcountLetters(string): count the occurence of a letter in a string
1.0.0
3 years ago