1.0.0 • Published 4 years ago
@adnan_saeed/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 @adnan_saeed/lotide
Require it:
const _ = require('@adnan_saeed/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
assertArraysEqual(...): Assert two Arrays if equal or notassertEqual(...): Assert if equal or notassertObjectsEqual(...): Assert if objects are equalcountLetters(...): count Letters in a stringcountOnly(...): count specific names and return how many times it was repeatedeqArrays(...): return true or false if two arrays are equal or noteqObjects(...): return true or false if two objects have same value or notfindKey(...): find key of an objectfindKeyByValue(...): find key by its valuehead(...): head of an arrayletterPositions(...): returns possition of the lettermap(...): used map functionmiddle(...): return middle value of an arraytail(...): return tail of an arraytakeUntil(...): check data and return until the requirement meetswithout(...): check array and return another array including values that are present in one array but not in other one.
1.0.0
4 years ago