1.0.1 • Published 5 years ago
@elim04/lotide v1.0.1
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 @elim04/lotide
Require it:
const _ = require('@username/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
function1(assertArraysEqual): asserts if arrays and their contents to see if they are equalfunction2(assertEqual): compares if expected with actualfunction3(countLetters): determines the number of each letter in a stringfunction4(countOnly): counts number of itemsfunction5(eqArrays): determines if contents of array are equal to each otherfunction6(eqObjects): determines if objects and their contents are equal to each otherfunction7(findKey): finds a specific key in an objectfunction8(findKeyByValue): finds a key with specific value in an objectfunction9(flatten): turns nested arrays into one arrayfunction10(head): returns the 0 index of an arrayfunction11(letterPositions): determines the letter position (index) of each letter in a stringfunction12(map): modfiys each item of an array and returns that array with new valuesfunction13(middle): returns the middle of an arrayfunction14(tail): returns the tail end of an arrayfunction15(takeUntil): filters an array until a certain condition is metfunction16(without): filters an array without a specific item