@muhammad.usama12/lotide_
v1.0.0
Published
A mini Lodash clone. This Lotide library provides some basic function implementation. This project was conducted by Muhammad Usama to display teachings of Lighthouse Labs.
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 @muhammad-usama12/lotide
Require it:
const _ = require('@muhammad-usama12/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
head([array]): Scans the array in question and returns the first element of the array.tail([array]): Scans the array in question and returns the last element of the array.middle[(array)]: Scans the array in question and returns the middle element(s) of the array.countLetters('string'): Scans the string in question and returns an object with the individual characters in the string and their frequency.countOnly([array1, arguement)]: Scans the array in question and returns only the matching elements.findKey({object)}, callback): Scans the object(s) in question and returns the specific key(s) being passed as the argument.findKeyByValue({object}, key): Scans the object(s) in question and returns the key value passed as the arguementmap([array], callback): Scans the array in question and returns a new array that has passed the callback arguement.letterPosition(["string"]): Scans the data in question and returns the position of the string by indexing the characters involved.takeUntil([array], callback): Scans the array in question and returns selected elements which were restricted by the callback arguement.without([array], argument): Scans the array and returns a new array, with the argument removing the selected elements.
