@ahmadameenab/lotide
v1.0.0
Published
First project for Lighthouse Labs
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 @ahmadameenab/lotide
Require it:
const _ = require('@ahmadameenab/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
head: Provides the head of an arraytail: Removes the head of an arraymiddle: Provides the middle of an arrayassertArraysEqual: Asserts if arrays are equalassertEqual: asserts if two entries are equalassertObjectsEqual: asserts if two objects are equalcountLetters: Counts the number of selected letters in a stringcountOnly: Counts the number of selected stringseqArrays: asserts if two arrays are equal in lengtheqObjects: asserts if two objects have the same valuesfindKey: finds a given key in an objectfindKeyByValue: finds the key in an object based off the value providedflatten: takes arrays with multiple arrays within itself and outputs one single arrayletterPositions: counts the number of letters in a stringtakeUntil: outputs values from an array until a specified conditionwithout: removes selected values from an array
