1.0.0 • Published 5 years ago
@lynchseb/lotide2 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 @lynchseb/lotide2
Require it:
const _ = require('@lynchseb/lotide2');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
Head: Takes in an array and returns the first indexTail: Takes in an array slices the first index and returns the restMiddle: Takes in an array and returns the middle index an odd array and the two middles indexes of an even array.Count Letters: Returns value of occurences of most seen letterCount Only: Count only what is included in the perametersFind Key: Returns specified key from an object.Find Key by Value: Returns key with the associated valueLetter Positions: Returns index of the searched letterMap: Creates a new array with the value at 0 index of each element in the given arrayTake Until: Returns values into the specific breakpoint value is metWithout: Creates and returns a new array without the specified elements.
1.0.0
5 years ago