1.0.1 • Published 4 years ago
@surajeon/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 @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:
index
: a list of all of the functions in an objecthead
: Returns first index value from an arraytail
: Returns all values expect the firstmiddle
: Returns the middle item in a given array, for even number, return the middle twoassertEqual
: compares two values to see if they're equal or notassertArraysEqual
: 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 valueletterPositions
: 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