@mohammedsnpm/lotide
v1.0.0
Published
clone of lodash for learning purpose
Downloads
4
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 @Mohamedsa1990
/lotide
Require it:
const _ = require('@Mohamedsa1990
/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
tail(...)
:gives the tail of the arrayhead(...)
: gives the first element of the arraymiddle(...)
: gives the middle number of the arrayassertArraysEqual(...)
: asserts if 2 arrays are equalassertEqual(...)
:asserts if two values(not arrays) are equalassertObjectsEqual(...)
:asserts if two objects are equalcountLetters(...)
: count the number of letterscountOnly(...)
:count the specified lettereqArrays(...)
:check if two arrays are equaleqObjects(...)
:check if two objects are equalfindKeyByValue(...)
:find the key of an object by finding the value of that keyfindKey(...)
:find the key of an objectflatten(...)
:flatten nested array (one level only)letterPositions(...)
:gives the letter position in a sentancemap(...)
:map the array elementstakeUntil(...)
:take the array elements until a specified conditionwithout(...)
: take array element without specified element