1.0.0 • Published 3 years ago
@tmackinnon/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 @tmackinnon/lotide
Require it:
const _ = require('@tmackinnon/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
head(): returns the first item in the given arraytail(): takes in an arrat and returns everything except the first item in itmiddle(): takes in an array and returns the middle-most element(s) of the given array, if array is one or two elements, returns empty arrayassertArraysEqual(): takes in two arrays and console.logs 'passed' if they are equal and 'failed' if they are notassertEqual(): take in two values and console.logs 'passed' if they are equal and 'failed' if they are notassertObjectsEqual(): takes in two objects and console.logs 'passed' if they are equal and 'failed' if they are notcountLetters(): takes in a sentence (as a string) then returns a count of each of the letters in that sentencecountOnly(): takes in a collection of items and returns the counts for a specific subset of those itemseqArrays(): compares two arrays for a perfect matcheqObjects(): takes in two objects and returns true or false, based on if they are a matchfindKey(): takes in an object and a callback, will scan the object and return the first key for which the callback returns a truthy value. If no key is found, then it should return undefinedfindKeyByValue(): takes in an object & value, scans the object and returns the first key which contains the given value. If no key with that given value is found, then it should return undefinedflatten(): takes in an array containing elements (including nested arrays), and returns a "flattened" version of the arrayletterPosition(): returns all the indices in the string where each character is foundmap(): returns a new array based on the results of the callback functiontakeUntil(): collects items from a provided array until the callback provided returns a truthy valuewithout(): returns a subset of a given array, removing unwanted elements
1.0.0
3 years ago