1.0.0 • Published 6 years ago
@rjblee/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 @rjblee/lotide
Require it:
const _ = require('@rjblee/lotide');
Call it:
const results = _.tail([1, 2, 3]) // => [2, 3]
Documentation
The following functions are currently implemented:
function1(assertEqual): compares if two strings or numbers are identicalfunction2(head): returns the first item (head) in the arrayfunction3(tail): returns the "tail" of an array: everything except for the first item (head) of the provided arrayfunction4(eqArrays): takes in two arrays and returns true or false, based on a perfect matchfunction5(assertArraysEqual): take in two arrays and console.log an appropriate message to the consolefunction6(...): descriptionfunction7(...): descriptionfunction8(...): descriptionfunction9(...): descriptionfunction10(...): descriptionfunction11(...): descriptionfunction12(...): descriptionfunction13(...): descriptionfunction14(...): description
1.0.0
6 years ago