@brandonkilic/lotide
v1.0.0
Published
Lotide folder for Lighthouse Labs
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 @username/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(head)
: returns the first value of an arrayfunction2(tail)
: returns the value of an arry after index[0]function3(middle)
: returns the middle values of an arry, if the array length is a even number, two numbers are returnedfunction4(countLetters)
: counts how many times a letter occurs in a stringfunction5(countOnly)
: counts how many times a value occursfunction6(eqArrays)
: compares two arrays to return a booleanfunction7(findKey)
: returns a key with first description with a true valuefunction8(findKeyByValue)
: check if a value matches the second variablefunction9(flatten)
: takes arrays within arrays and returns its valuesfunction10(letterPositions)
: shows the index of ever letter in the arrayfunction11(map)
: returns the value of a certin index in an arrayfunction12(assertEquals)
: checks if two values are equalfunction13(assertArraysEquals)
: checks if two arrays are completely equalfunction14(without)
: takes out certain value of the array and returns the new arrayfunction15(takeUnitl)
: returns value of an array until condition is met