1.0.0 • Published 4 years ago
@catuchi/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 @catuchi/lotide
Require it:
const _ = require('@catuchi/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
function1(head): returns the head of an array (i.e the first element of an array)function2(middle): returns the middle element of an arrayfunction3(tail): returns the tail of an array (i.e everything but the first value)function3(without):function3(takeUntil): this function will keep collecting items from "array" till "callback" returns a truthy valuefunction3(map):function3(letterPositions):function3(findKeyByValue): finds key by valuefunction3(findKey): finds keyfunction3(eqObjects): compares two objects, returns true or falsefunction3(eqArrays): compares two arrays, returns true or falsefunction3(countOnly): this function will return an object containing counts of everything that the input object listedfunction3(countLetters): receives a string and return a count of each of the letters in a sentence as an objectfunction3(assertObjectsEqual): compares two objectsfunction3(assertEqual): compares to elementsfunction3(assertArraysEqual): compares two arrays
1.0.0
4 years ago