1.0.2 • Published 5 years ago
@adamtranquilla/lotide v1.0.2
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 @adamtranquilla/lotide
Require it:
const _ = require('@adamtranquilla/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
head(...): returns first item in arraytail(...): returns every item after the first in an arraymiddle(...): returns the middle item(s) of an arraycountLetters(...): counts all letters in a stringcountOnly(...): counts only specified letters in a stringeqArrays(...): determines if arrays are equivalent in content type and valueeqObjects(...): determines if objects are equivalent in content type and valuefindKey(...): Finds the keyfindKeyByValue(...): Finds the key for a searchable valueflatten(...): Flattens a array with nested arraysletterPositions(...): Returns the letter position of a target lettermap(...): Utilizies mapping CallbakcstakeUntil(...): Returns array items up until a target valuewithout(...): Removes a target value