1.0.0 • Published 4 years ago
@astridcha1x/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 @astridcha1x/lotide
Require it:
const _ = require('@astridcha1x/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
assertEqual
: compares two values to see whether or not they're equalassertArraysEqual
: compares two arrays to see whether or not they're equalassertObjectsEqual
: compares two objects to see whether or not they're equalcountLetters
: returns the number count of letters in a given stringcountOnly
: returns counts for a specific subset of given itemseqArrays
: compares two arrayseqObjects
: compares two objectsfindKey
: returns the first key for which the callback returns a truthy valuefindKeyByValue
: searches for a key on an object where its value matches a given valuehead
: returns the first item in a given arraymiddle
:returns the middle item in a given array (if applicable)tail
: returns the rest of the elements in an array after the headindex
: a list of all of the functions in an objectletterPositions
: returns all indices in the string where each character is foundmap
: creates new array with the results of calling a provided function on every element in the calling arraytakeUntil
: returns a "slice of the array with elements taken from the beginning"without
: removes elements from an array
1.0.0
4 years ago