1.0.0 • Published 5 years ago
@andrewrlloyd88/lotide 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 @andrewrlloyd88/lotide
Require it:
const _ = require('@andrewrlloyd88/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
head(["Welcome", "To", "Lighthouse]) = [Welcome]
: gets the first element from an arraytail(["Welcome", "To", "Lighthouse]) = ["To", "Lighthouse"]
: get everything but the first element from an arrayeqArrys([1,2,3], [1,2,"3"]) == true
: checks if two arrays are equalassertArraysEqual(1,2,3], [1,2,"3"]) !== true
assertArraysEqual(1,2,3], [1,2,3]) === true
: checks the strict equality of two arrays. Uses eqArrays as a helper function.assertEqual("bacon", "bacon") === true
: checks equality between two primitivesmiddle([1,2,3])
===[2]
middle([1,2,3,4])
===[3, 4]
: gets the middle item from an odd numbered array or the middle two items. N.B if an array is empty or only contains 1 item it will return with an empty array.
Yet to implement:
assertObjectsEqual()
countLetters()
countOnly()
eqObjects()
findKey()
findKeyByValue()
flatten()
letterPositions()
map()
takeUntil()
without()
1.0.0
5 years ago