@eva-prokhorenko/lotide
v1.0.0
Published
LHL project
Downloads
4
Readme
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 @eva-prokhorenko/lotide
Require it:
const _ = require('@eva-prokhorenko/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
head(): Returns the first element in arraytail(): Returns the array without the first elementmiddle(): Returns middle element(s) in an arraycountLetters(): Counts each letter in a string, returns the object with calculationscountOnly(): Counts only the element that we specify, returns an object with calculationsfindKey(): finds a key of the element after the defining callback functionfindKeyByValue(): finds a key of the element using its valueletterPositions(): finds the position of the element in a stringtakeUntil(): returns elements before the stop elementflatten(): Removes the elements from nested arrays and returns a single arraywithout(): Removes the unwanted element
